forked from sunhak-hout/express-ts-api-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "express-ts-api-boilerplate",
"version": "1.0.0",
"scripts": {
"dev": "nodemon",
"build": "rm -rf dist && tsc && NODE_ENV=production node dist/index.js"
},
"author": "https://github.com/sunhak-hout",
"repository": "https://github.com/sunhak-hout/express-ts-api-boilerplate",
"license": "MIT",
"dependencies": {
"@prisma/client": "^3.13.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-async-router": "^0.1.15",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@types/module-alias": "^2.0.1",
"@types/morgan": "^1.9.3",
"module-alias": "^2.2.2",
"nodemon": "^2.0.12",
"prisma": "^3.13.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "NODE_ENV=development ts-node src/index.ts"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}