-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "node-express-typescript-rest-api",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "kwn <kwn1125dev@gmail.com>",
"scripts": {
"start": "tsc && node dist/server.js",
"prisma:deploy": "prisma migrate deploy",
"prisma:generate": "prisma generate"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"@types/jsonwebtoken": "^9.0.1",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.16",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "2.8.3",
"prisma": "^4.10.1",
"typescript": "^4.9.4"
},
"volta": {
"node": "18.14.0"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}