-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.39 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
{
"name": "sith-api",
"version": "0.0.1",
"description": "RESTful node.js service backing the SITH app.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nerdybeast/sith-api"
},
"main": "./dist/server.js",
"scripts": {
"start": "node dist/server.js",
"test": "jest",
"test:coverage": "jest --coverage",
"tsc": "tsc --watch",
"nodemon": "nodemon",
"server": "tsc --watch && nodemon --inspect ./dist/server.js --watch dist",
"build": "tsc",
"prod": "tsc && node dist/server.js",
"lint:ts": "tsc & tslint ./src/**/*.ts",
"jest": "jest",
"dev": "ts-node-dev --inspect=5859 -r dotenv/config -- ./src/server.ts"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"@nestjs/common": "^6.3.1",
"@nestjs/core": "^6.3.1",
"@nestjs/microservices": "^6.3.1",
"@nestjs/platform-express": "^6.3.1",
"@nestjs/platform-socket.io": "^6.3.1",
"@nestjs/testing": "^6.3.1",
"@nestjs/websockets": "^6.3.1",
"@types/node": "^12.0.8",
"body-parser": "^1.19.0",
"camelcase-keys": "^6.0.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"got": "^8.3.2",
"jsforce": "^1.8.5",
"jsonapi-serializer": "^3.6.4",
"jsonwebtoken": "^8.5.1",
"lodash.camelcase": "^4.3.0",
"lodash.isequal": "^4.5.0",
"lodash.mapkeys": "^4.6.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"rollbar": "^2.7.1",
"rxjs": "^6.5.2",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/debug": "^4.1.4",
"@types/express": "^4.17.0",
"@types/got": "^7.1.8",
"@types/hapi__joi": "^16.0.1",
"@types/jest": "^24.0.15",
"@types/jsonwebtoken": "^7.2.8",
"@types/lodash.camelcase": "^4.3.6",
"@types/morgan": "^1.7.35",
"@types/redis": "^2.8.13",
"@types/socket.io": "^2.1.2",
"@types/supertest": "^2.0.7",
"dotenv": "^8.0.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"supertest": "^3.4.2",
"ts-jest": "^24.1.0",
"ts-node": "^4.1.0",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^5.20.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"src",
"__mocks__"
],
"collectCoverageFrom": [
"src/**/*"
]
}
}