-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.17 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.17 KB
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
{
"name": "@polyhx/csgames-api",
"version": "1.0.0",
"description": "CS Games api",
"private": true,
"authors": [
"Brandon Roberge",
"Julien Dufresne",
"Laurent Caron",
"Simon Lacasse",
"Stephanie Leclerc"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polyhx/csgames-api.git"
},
"scripts": {
"start": "node ./build/server.js",
"watch": "gulp watch",
"build": "gulp build",
"lint": "gulp lint",
"dev": "npm run build && npm run start",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"dependencies": {
"@nestjs/common": "5.4.0",
"@nestjs/core": "5.4.0",
"@nestjs/microservices": "5.4.0",
"@nestjs/mongoose": "^5.2.2",
"@nestjs/swagger": "2.5.1",
"@nestjs/testing": "5.4.0",
"@nestjs/websockets": "5.4.0",
"@polyhx/nest-services": "2.0.9",
"adm-zip": "^0.4.13",
"class-transformer": "^0.1.9",
"class-validator": "^0.9.1",
"csv-stringify": "^5.3.0",
"dotenv": "^6.0.0",
"firebase-admin": "^9.4.2",
"ioredis": "^4.5.1",
"mongoose": "^5.0.1",
"morgan": "^1.9.0",
"nestjs-jwt2": "^1.0.2-beta",
"nexmo": "^2.1.1",
"node-fetch": "^1.7.3",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.2.2",
"uuid": "^3.1.0",
"ws": "^4.0.0",
"xlsx": "^0.14.1"
},
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/body-parser": "^1.16.7",
"@types/chai": "^4.1.7",
"@types/cors": "^2.8.1",
"@types/express": "^4.0.37",
"@types/ioredis": "^4.0.6",
"@types/mocha": "^5.2.5",
"@types/mongoose": "^5.0.1",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.7",
"@types/node": "^8.0.46",
"@types/node-fetch": "^1.6.7",
"@types/socket.io": "^1.4.31",
"@types/supertest": "^2.0.6",
"@types/uuid": "^3.4.3",
"@types/ws": "^4.0.0",
"chai": "^4.2.0",
"cross-env": "^5.1.1",
"gulp": "^4.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^5.0.0-alpha.3",
"mocha": "^5.2.0",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.8.0",
"typemoq": "^2.0.1",
"typescript": "^3.1.6"
}
}