-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 908 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 908 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
33
{
"name": "ts-boilerplate",
"version": "1.0.0",
"description": "Boilerplate code for Node typescript",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-ts": "rm -rf dist && tsc",
"start": "npm run serve",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-ts": "rm -rf dist && tsc -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.16.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"faker": "latest",
"lodash": "^4.17.11",
"nodemon": "^1.18.9",
"pg": "^7.7.1",
"reflect-metadata": "^0.1.12",
"routing-controllers": "^0.7.7",
"sequelize": "^4.42.0",
"sequelize-cli-typescript": "^3.2.0-c",
"sequelize-typescript": "^0.6.6",
"ts-optchain": "^0.1.2",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}