generated from jsynowiec/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1017 Bytes
/
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
40
41
{
"name": "node-api-2020",
"version": "0.0.1",
"description": "A Node API built by Cadell in 2020",
"author": "Cadell Christo",
"engines": {
"node": ">= 12.13 <13"
},
"scripts": {
"start": "npm run ts:watch & npm run server:watch",
"server:watch": "nodemon --inspect build/src/server.js",
"clean": "rimraf coverage build tmp",
"ts": "tsc",
"ts:watch": "tsc -w",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@types/express": "^4.17.6",
"@types/pg": "^7.14.3",
"@types/supertest": "^2.0.8",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"nodemon": "^2.0.3",
"pg": "^8.0.2",
"supertest": "^4.0.2",
"tslib": "~1.10.0"
},
"devDependencies": {
"@types/jest": "~25.1.2",
"@types/node": "~12.12.27",
"jest": "~25.1.0",
"prettier": "~1.19.1",
"rimraf": "~3.0.2",
"ts-jest": "~25.2.0",
"tsutils": "~3.17.0",
"typescript": "~3.8.2"
}
}