-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "typescript-express-tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm-run-all build start:prod",
"start:prod": "node ./dist/app.js",
"start:dev": "nodemon --watch src -e ts,ejs --exec npm run start",
"build": "npm-run-all build:clean build:lint build:tsc build:copy",
"build:clean": "rimraf dist/*",
"build:lint": "tslint -c tslint.json -p tsconfig.json --fix",
"build:tsc": "tsc",
"build:copy": "node bin/npm-scripts/copy.js",
"debug:start": "npm-run-all build debug:start:prod",
"debug:start:prod": "node --nolazy --inspect-brk=9229 ./dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Mark Smith",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.6",
"@types/node": "^13.13.5",
"express": "^4.17.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}