-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 791 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 791 Bytes
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
{
"name": "express-typescript",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"prestart": "npm run build",
"start": "node .",
"build": "tsc -p .",
"dev": "nodemon src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^8.0.0",
"express": "^4.17.0",
"express-handlebars": "^3.1.0",
"mongoose": "^5.5.9"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/express-handlebars": "0.0.31",
"@types/mongoose": "^5.5.1",
"@types/node": "^12.0.2",
"nodemon": "^1.19.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}