-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.1 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
39
{
"name": "node-typescript-boilerplate",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"engines": {
"node": ">= 10.13 <11"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^10.14.10",
"jest": "~24.8.0",
"jsonist": "^2.1.2",
"prettier": "~1.18.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"tslint": "~5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "~6.2.0",
"tsutils": "~3.14.0",
"typescript": "~3.5.0"
},
"scripts": {
"clean": "rimraf build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --forceExit --verbose",
"test:watch": "jest --watch",
"start": "ts-node ./src/server.ts"
},
"author": "Jakub Synowiec <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^4.17.0",
"express": "^4.17.1",
"ts-node": "^8.3.0",
"tslib": "~1.10.0"
}
}