-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
{
"name": "@polyhx/node-seed-project",
"version": "1.0.0",
"description": "PolyHx's node seed project",
"author": "PolyHx ([email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polyhx/node-seed-project.git"
},
"scripts": {
"start": "node ./build/server.js",
"watch": "gulp watch",
"build": "gulp build",
"lint": "gulp lint"
},
"dependencies": {
"@nestjs/common": "4.6.6",
"@nestjs/core": "4.6.6",
"@nestjs/mongoose": "3.0.1",
"@nestjs/websockets": "4.6.6",
"@types/multer": "^1.3.6",
"@types/ws": "^4.0.1",
"bcrypt": "1.0.3",
"class-transformer": "0.1.8",
"class-validator": "0.8.1",
"dotenv": "5.0.0",
"express-jwt": "5.3.0",
"jsonwebtoken": "^8.2.0",
"mongoose": "5.0.11",
"morgan": "1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "0.1.12",
"rxjs": "5.5.6",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/dotenv": "4.0.2",
"@types/express": "4.11.0",
"@types/express-jwt": "0.0.38",
"@types/jsonwebtoken": "^7.2.6",
"@types/mongoose": "^4.7.36",
"@types/morgan": "1.7.35",
"@types/node": "9.4.0",
"@types/passport": "^0.4.3",
"@types/passport-jwt": "^3.0.1",
"@types/socket.io": "^1.4.32",
"gulp": "3.9.1",
"gulp-nodemon": "2.2.1",
"gulp-sourcemaps": "2.6.4",
"gulp-tslint": "8.1.2",
"gulp-typescript": "3.2.4",
"tslint": "5.9.1",
"typescript": "2.6.2"
}
}