-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.45 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
{
"name": "nest-samples",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"private": true,
"dependencies": {
"@nestjs/apollo": "^10.0.19",
"@nestjs/bull": "^0.6.0",
"@nestjs/common": "^9.0.8",
"@nestjs/core": "^9.0.8",
"@nestjs/graphql": "^10.0.21",
"@nestjs/passport": "^9.0.3",
"@nestjs/platform-express": "^9.0.8",
"@nestjs/platform-ws": "^9.0.8",
"@nestjs/websockets": "^9.0.8",
"@types/bull": "^3.15.9",
"apollo-server-express": "^3.10.0",
"bull": "^3.3",
"express": "^4.18.1",
"graphql": "^16.5.0",
"graphql-upload": "^16.0.1",
"multer": "1.4.5-lts.1",
"nest-commander": "^3.0.0",
"passport": "^0.6.0",
"passport-http": "^0.3.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6",
"tslib": "^2.4.0",
"ws": "^8.8.1"
},
"devDependencies": {
"@nestjs/schematics": "^9.0.1",
"@nestjs/testing": "^9.0.8",
"@nrwl/cli": "14.5.4",
"@nrwl/eslint-plugin-nx": "14.5.4",
"@nrwl/jest": "14.5.4",
"@nrwl/linter": "14.5.4",
"@nrwl/nest": "14.5.4",
"@nrwl/node": "14.5.4",
"@nrwl/nx-cloud": "14.3.0",
"@nrwl/workspace": "14.5.4",
"@types/graphql-upload": "^8.0.10",
"@types/inquirer": "^8.2.0",
"@types/jest": "27.4.1",
"@types/multer": "^1.4.7",
"@types/node": "18.0.0",
"@types/passport-http": "^0.3.9",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"dotenv": "15.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.3.0",
"jest": "27.5.1",
"nest-commander-schematics": "^3.0.0",
"nx": "14.5.4",
"prettier": "2.7.1",
"ts-jest": "27.1.4",
"ts-node": "10.8.2",
"typescript": "4.7.4"
}
}