-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 724 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 724 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
{
"name": "express-typescript-template",
"version": "1.0.0",
"description": "express in typescript",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "nodemon -e ts -w ./src -x npm run watch:serve",
"test": "echo \"Error: no test specified yet\" && exit 1",
"watch:serve": "ts-node src"
},
"author": "Marko Lavrinec",
"license": "MIT",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.0.14",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
}
}