-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1017 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
35
36
37
38
39
40
41
{
"name": "express-ts-api-boilerplate",
"version": "1.0.0",
"scripts": {
"dev": "nodemon",
"prod": "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": {
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-async-router": "^0.1.15",
"mongoose": "^5.6.7",
"morgan": "^1.9.1"
},
"devDependencies": {
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.5.11",
"@types/morgan": "^1.7.36",
"module-alias": "^2.2.0",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "NODE_ENV=development ts-node src/index.ts"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}