-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 985 Bytes
/
package.json
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
{
"name": "admin",
"scripts": {
"build": "tsc",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"lint": "eslint --ext \".ts\" --ignore-path .eslintignore .",
"format": "prettier ./src --write"
},
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/jwt": "^7.2.0",
"@fastify/multipart": "^7.7.3",
"@prisma/client": "^5.2.0",
"bcrypt": "^5.1.1",
"consola": "^3.2.3",
"dotenv": "^16.3.1",
"fastify": "^4.22.0",
"joi": "^17.10.0",
"moment": "^2.29.4",
"redis": "^4.6.8",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "^20.5.6",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"eslint": "^8.48.0",
"prettier": "^3.0.2",
"prisma": "^5.2.0",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
}
}