-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
39 lines (39 loc) · 1014 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
{
"name": "rest-api-node-ts-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "nodemon ./dist/index.js",
"dev": "nodemon --exec ts-node -- ./src/index.ts",
"prod": "npm run build && npm run start",
"clean": "rm -rf node_modules coverage dist .nyc_output",
"lint": "tslint -t stylish --project \"tsconfig.json\""
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"helmet": "^3.13.0",
"http-status": "^1.2.0",
"jwt-then": "^1.0.1",
"mongoose": "^5.2.15"
},
"devDependencies": {
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/node": "^10.9.4",
"morgan": "^1.9.1",
"nodemon": "^1.18.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
}
}