-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.64 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
{
"name": "project",
"version": "1.0.0",
"description": "Nestjs Starter using Mongodb and Passportjs",
"author": "Marco Melilli",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"prestart:prod": "rm -rf dist && tsc",
"start:prod": "node dist/main.js",
"start:hmr": "node dist/server",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
"@nestjs/common": "^6.9.0",
"@nestjs/core": "^6.9.0",
"@nestjs/mongoose": "^6.1.2",
"@nestjs/passport": "^6.1.0",
"@nestjs/platform-express": "^6.9.0",
"@nestjs/platform-socket.io": "^7.1.2",
"@nestjs/schedule": "^0.4.0",
"@nestjs/swagger": "^4.5.5",
"@nestjs/websockets": "^7.1.2",
"@types/ali-oss": "^6.0.5",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.144",
"@types/mongoose": "^5.5.29",
"@types/node": "^9.6.55",
"ali-oss": "^6.7.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"express-rate-limit": "^5.0.0",
"fastify-formbody": "^2.0.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"mongoose": "^5.7.8",
"nodejs-websocket": "^1.7.2",
"nodemailer": "^4.6.7",
"nodemon": "^1.19.4",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.5.5",
"rxjs-compat": "^6.5.5",
"string-random": "^0.1.3",
"swagger-ui-express": "^4.1.4",
"ts-md5": "^1.2.11",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.2",
"webpack": "^4.41.2"
},
"devDependencies": {
"@nestjs/testing": "^6.9.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.0.39",
"@types/jest": "^21.1.8",
"@types/lodash": "^4.14.118",
"@types/mongoose": "^5.0.18",
"@types/node": "^9.3.0",
"@types/socket.io": "^2.1.8",
"@types/supertest": "^2.0.4",
"jest": "^24.9.0",
"nodemon": "^1.14.1",
"prettier": "^1.11.1",
"supertest": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.1.1",
"tslint": "5.3.2",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}