forked from YumeT023/facebak-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "social-media",
"version": "1.0.0-PLACEHOLDER",
"private": true,
"author": "yumii.saiko <yumii.saiko@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint --cache . --ext .ts",
"build": "npm run clean && tsc -p tsconfig.json",
"start": "npm run build && node build/server.js",
"dev": "tsx src/app.ts",
"clean": "rimraf -rf build",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,ts,tsx,json,yml,yaml}\""
},
"engines": {
"node": ">=16.17.0"
},
"prisma": {
"seed": "tsx ./scripts/seed.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "^16.18.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/jwt": "^7.2.0",
"@prisma/client": "^5.0.0",
"bcrypt": "^5.1.0",
"fastify": "^4.21.0",
"fastify-zod": "^1.3.2",
"zod": "^3.21.4"
}
}