-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.03 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
{
"name": "huyefen-server",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "APP_TYPE=dev nest start",
"start:dev": "APP_TYPE=dev nest build --watch --webpack --webpackPath webpack-hmr.config.js",
"start:worker": "nest build; cd dist; node worker.js",
"start:debug": "APP_TYPE=test nest start --debug --watch",
"start:prod": "APP_TYPE=prod node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"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"
},
"dependencies": {
"@elastic/elasticsearch": "^7.7.1",
"@nestjs/bull": "^0.1.1",
"@nestjs/common": "^7.1.3",
"@nestjs/config": "^0.5.0",
"@nestjs/core": "^7.1.3",
"@nestjs/elasticsearch": "^7.1.0",
"@nestjs/jwt": "^7.0.0",
"@nestjs/mongoose": "^7.0.1",
"@nestjs/passport": "^7.0.0",
"@nestjs/platform-express": "^7.1.3",
"@nestjs/platform-socket.io": "^7.1.3",
"@nestjs/serve-static": "^2.1.1",
"@nestjs/websockets": "^7.1.3",
"@types/bcryptjs": "^2.4.2",
"@types/lodash": "^4.14.155",
"axios": "^0.20.0",
"bcryptjs": "^2.4.3",
"bull": "^3.14.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"firebase-admin": "^8.12.1",
"fluent-ffmpeg": "^2.1.2",
"lodash": "^4.17.15",
"mongoosastic": "^4.6.0",
"mongoose": "^5.9.18",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.5.5",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@nestjs/cli": "^7.2.0",
"@nestjs/schematics": "^7.0.1",
"@nestjs/testing": "^7.1.3",
"@types/bull": "^3.14.0",
"@types/express": "^4.17.6",
"@types/jest": "26.0.0",
"@types/mongoose": "^5.7.24",
"@types/multer": "^1.4.3",
"@types/node": "^14.0.13",
"@types/passport-jwt": "^3.0.3",
"@types/socket.io": "^2.1.8",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"start-server-webpack-plugin": "^2.2.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.5",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}