-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 816 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 816 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
{
"name": "timebox-api",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev:tsc": "tsc -w",
"dev:watch": "nodemon dist/index.js",
"postgres:up": "pg_ctl -D /usr/local/var/postgres start",
"build": "tsc"
},
"dependencies": {
"body-parser": "^1.19.0",
"class-validator": "^0.12.2",
"express": "^4.17.1",
"express-paginate": "^1.0.2",
"express-preconditions": "^1.0.5",
"lodash.pick": "^4.4.0",
"pg": "^7.3.0",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.26"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.8",
"@types/express-paginate": "^1.0.0",
"@types/lodash.pick": "^4.4.6",
"@types/node": "^8.0.29",
"nodemon": "^2.0.4",
"typescript": "3.3.3333"
}
}