-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "task-calendar",
"version": "0.0.0",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/server.js",
"build": "tsc --module commonjs",
"postinstall": "npm run build",
"dev": "cross-env NODE_ENV=development nodemon --watch src --delay 1 --exec 'ts-node' src/server.ts",
"test": "jest --forceExit --detectOpenHandles",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"dependencies": {
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"envalid": "^6.0.2",
"express": "^4.17.1",
"helmet": "^4.1.0",
"hpp": "^0.2.3",
"mongoose": "~5.10.11",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.2",
"@types/hpp": "^0.2.1",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.1",
"@types/node": "^13.7.0",
"nodemon": "^2.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.0.2"
}
}