This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
105 lines (105 loc) · 3.93 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "nestjs-seed",
"version": "1.0.0",
"description": "Maestro NestJS seed project",
"license": "ISC",
"author": "TeamHive",
"contributors": [
"John Pinkster <jpinkster>"
],
"homepage": "https://github.com/TeamHive/nestjs-seed",
"repository": {
"type": "git",
"url": "https://github.com/TeamHive/nestjs-seed.git"
},
"bugs": {
"url": "https://github.com/TeamHive/nestjs-seed/issues"
},
"scripts": {
"postversion": "git push --tag",
"compile": "npm-run-all clear build",
"clear": "rm -rf dist",
"build": "tsc",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prestart": "npm-run-all clear lint build",
"start": "npm-run-all --parallel watch:project watch:start",
"start:debug": "npm-run-all --parallel watch:project watch:debug",
"watch:start": "nodemon './dist/index.js' --watch './dist'",
"watch:project": "chokidar src/ src/**/ -c \"npm run lint && npm run build\"",
"watch:debug": "npm run prestart && nodemon --inspect-brk=5858 './index.js' --watch './dist'",
"migrations": "db-migrate up --config migrations/config.json",
"migrations:create": "db-migrate create --config migrations/config.json --sql-file --",
"test": "jest --config=jest.json",
"docs": "rm -Rf docs && apidoc -i src/ -o docs/ && open docs/index.html",
"build.docs": "rm -Rf docs && apidoc -i src/ -o docs/",
"docker.cmd": "run-parts ./scripts && nohup forever index.js",
"docker.cmd.local": "sh ./migrations/run-migrations.sh && nohup forever -c \"node --inspect=0.0.0.0:5858\" index.js"
},
"main": "index.js",
"dependencies": {
"@local/keys": "file:./keys",
"@nestjs/common": "^6.5.3",
"@nestjs/core": "^6.5.3",
"@nestjs/microservices": "^6.5.3",
"@nestjs/passport": "^6.1.0",
"@nestjs/platform-express": "^6.5.3",
"@nestjs/testing": "^6.5.3",
"@teamhive/express-http-logger": "0.0.3",
"@teamhive/honeyflow-express-client": "0.0.3",
"@teamhive/nestjs-common": "^5.0.0",
"@teamhive/node-document-service": "^1.0.3",
"@teamhive/node-event-handler": "^1.0.0",
"@teamhive/sequelize-common": "^3.2.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"class-validator": "^0.9.1",
"config": "^3.2.0",
"cookie-parser": "^1.4.4",
"db-migrate": "^0.11.6",
"db-migrate-pg": "^1.0.0",
"helmet": "^3.18.0",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"log4js": "^4.5.1",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
"pg": "^7.11.0",
"raven": "^2.6.4",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"rxjs": "^6.5.2",
"sequelize": "^5.10.1",
"sequelize-typescript": "^1.0.0-beta.3",
"sqlstring": "^2.3.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/config": "0.0.34",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.16.0",
"@types/helmet": "0.0.43",
"@types/jest": "^24.0.15",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^12.0.10",
"@types/passport": "^1.0.0",
"@types/passport-google-oauth": "^1.0.41",
"@types/passport-jwt": "^3.0.1",
"@types/pg": "^7.4.14",
"@types/raven": "^2.5.3",
"@types/redis": "^2.8.13",
"@types/sequelize": "^4.27.24",
"@types/sqlstring": "^2.2.1",
"@types/validator": "^10.11.1",
"apidoc": "^0.17.7",
"chokidar": "^3.0.1",
"chokidar-cli": "^1.2.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
}
}