-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 4.08 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "notus-api",
"version": "0.0.1",
"description": "Notus API Node.js Nest Server.",
"author": "Chuck Bergeron & Brendan Asselstine of Delta Camp",
"license": "MIT",
"scripts": {
"typeorm": "$(yarn bin)/ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"fixture": "$(yarn bin)/ts-node -r tsconfig-paths/register ./node_modules/typeorm-fixtures-cli/dist/cli.js",
"console": "$(yarn bin)/ts-node -r tsconfig-paths/register",
"graphql:generate": "$(yarn bin)/ts-node scripts/generate-typings",
"db:mirror": "node scripts/pull-prod-db.js",
"db:generate": "yarn typeorm migration:generate -n Migration",
"db:migrate": "yarn typeorm migration:run",
"db:revert": "yarn typeorm migration:revert",
"db:drop": "yarn typeorm schema:drop",
"db:rebuild": "yarn db:drop && yarn db:migrate && yarn db:seed",
"db:seed": "yarn fixture -d ./faker",
"ts-build": "$(yarn bin)/tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "nodemon",
"start:dev": "$(yarn bin)/ts-node -r tsconfig-paths/register src/main.ts",
"start:debug": "nodemon --config nodemon-debug.json",
"build": "rimraf dist && yarn ts-build",
"prestart:prod": "yarn build",
"start-heroku": "node dist/main.js",
"worker-heroku": "node dist/worker.js",
"worker": "nodemon --config nodemon-worker.json",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"e2e": "yarn test:e2e"
},
"dependencies": {
"@angular-devkit/schematics": "^7.3.6",
"@nest-modules/mailer": "^1.0.4",
"@nestjs/common": "^6.0.5",
"@nestjs/core": "^6.0.5",
"@nestjs/graphql": "^6.0.4",
"@nestjs/jwt": "^6.0.0",
"@nestjs/passport": "^6.0.0",
"@nestjs/platform-express": "^6.0.2",
"@nestjs/platform-socket.io": "^6.0.4",
"@nestjs/typeorm": "^6.0.0",
"@nestjs/websockets": "^6.0.4",
"@types/graphql": "^14.2.0",
"@types/joi": "^14.3.2",
"@types/mustache": "^0.8.32",
"apollo-boost": "^0.3.1",
"apollo-link-ws": "^1.0.17",
"apollo-server-express": "^2.4.8",
"apollo-utilities": "^1.2.1",
"axios": "^0.18.0",
"class-transformer": "^0.2.0",
"class-validator": "^0.9.1",
"cls-hooked": "^4.2.2",
"date-fns": "^1.30.1",
"debug": "^4.1.1",
"ethers": "^4.0.27",
"graphql": "^14.2.1",
"joi": "^14.3.1",
"jsonschema": "^1.2.4",
"juice": "^5.2.0",
"lodash": "^4.17.11",
"mailchimp-api-v3": "^1.13.0",
"mustache": "^3.0.1",
"node-fetch": "^2.3.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"passport-twitter": "^1.0.4",
"pg": "^7.9.0",
"pg-boss": "^3.1.6",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.2",
"rollbar": "^2.5.4",
"rxjs": "^6.4.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"subscriptions-transport-ws": "^0.9.16",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.5.0",
"type-graphql": "^0.17.1",
"typeorm": "^0.2.15",
"typescript": "^3.4.1"
},
"devDependencies": {
"@nestjs/testing": "^6.0.2",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.1",
"@types/node": "^10.7.1",
"@types/pg": "^7.4.13",
"@types/socket.io": "^2.1.2",
"@types/supertest": "^2.0.5",
"jest": "^23.5.0",
"nodemon": "^1.18.3",
"prettier": "^1.14.2",
"supertest": "^3.1.0",
"timekeeper": "^2.2.0",
"ts-jest": "^23.1.3",
"tslint": "5.11.0",
"typeorm-fixtures-cli": "chuckbergeron/typeorm-fixtures#master"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"setupFiles": [
"./importReflectMetadata.ts"
],
"rootDir": "src",
"testRegex": ".(spec|test).ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}