-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.37 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
40
41
42
43
44
45
46
{
"name": "node-express-typescript",
"version": "0.0.0",
"description": "A Node-Express boilerplate with Typescript",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tslint": "tslint -c tslint.json -p tsconfig.json -s node_modules/custom-tslint-formatters/formatters -t grouped",
"start": "concurrently \"npm run build\" \"npm run serve\"",
"client": "cpx \"src/public/*.*\" \"dist/public\" --watch",
"serve": "nodemon -V dist/server.js",
"serve:prod": "environment=production node dist/server.js",
"build": "tsc -w",
"build:prod": "tsc"
},
"pre-commit": [
"tslint"
],
"author": "Paul Shan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.11.0",
"@types/node": "^8.5.2",
"concurrently": "^3.5.1",
"cpx": "^1.5.0",
"custom-tslint-formatters": "^2.1.1",
"nodemon": "^1.14.3",
"pre-commit": "^1.2.2",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.4.2",
"typescript": "^2.6.2"
},
"dependencies": {
"bcrypt": "^2.0.0",
"body-parser": "^1.18.2",
"class-validator": "^0.8.5",
"connect-redis": "^3.3.3",
"express": "^4.16.2",
"express-session": "^1.15.6",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.4.1",
"reflect-metadata": "^0.1.12",
"typeorm": "^0.1.20"
}
}