forked from rdhelms/node-typescript-pg-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.26 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "node-ts-pg-starter",
"version": "1.0.0",
"engines": {
"node": "8.11.3"
},
"description": "",
"main": "dist/src/app.js",
"nyc": {
"exclude": [
"dist/test/**/*"
],
"reporter": "lcov"
},
"scripts": {
"start": "node -r dotenv/config dist/src/app.js",
"restart": "npm run build-clean && npm run lint && npm start",
"build": "tsc",
"build-clean": "del-cli dist && npm run build",
"build-watch": "tsc --watch",
"lint": "tslint --project tsconfig.json --config tslint.json --format verbose",
"test": "npm run build-clean && npm run lint && cross-env NODE_ENV=test mocha --recursive dist/test --delay -r dotenv/config",
"debug-tests": "npm run build-clean && cross-env NODE_ENV=test mocha --inspect-brk --recursive dist/test --delay -r dotenv/config",
"debug-server": "npm run build-clean && node --inspect-brk -r dotenv/config dist/src/app.js",
"coverage": "nyc npm test",
"view-coverage": "opn coverage/lcov-report/index.html",
"check-coverage": "nyc check-coverage --lines 100 --statements 100"
},
"author": "Robert Helms <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"connect-session-sequelize": "^6.0.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"debug": "^4.1.0",
"del-cli": "^1.1.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"opn-cli": "^3.1.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.6.1",
"reflect-metadata": "^0.1.12",
"sequelize": "^4.41.1",
"sequelize-typescript": "^0.6.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/debug": "0.0.31",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.10",
"@types/mocha": "^5.2.5",
"@types/passport": "^0.4.7",
"@types/passport-local": "^1.0.33",
"@types/pg": "^7.4.10",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}