-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.41 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
101
102
103
104
105
106
{
"name": "server",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "cross-env NODE_ENV=development nest start",
"start:dev": "cross-env NODE_ENV=development nest start --watch",
"start:debug": "cross-env NODE_ENV=development nest start --debug --watch",
"start:prod": "cross-env NODE_ENV=production node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "nr lint --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",
"commit": "git-cz"
},
"dependencies": {
"@nestjs/common": "^8.0.6",
"@nestjs/core": "^8.0.6",
"@nestjs/graphql": "^9.0.4",
"@nestjs/jwt": "^8.0.0",
"@nestjs/mongoose": "^8.0.1",
"@nestjs/passport": "^8.0.1",
"@nestjs/platform-express": "^8.0.6",
"apollo-server-core": "^3.3.0",
"apollo-server-express": "^3.3.0",
"cache-manager": "^3.6.0",
"cache-manager-redis-store": "^2.0.0",
"class-transformer": "~0.5.1",
"class-validator": "~0.13.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.0.0",
"graphql-subscriptions": "^2.0.0",
"graphql-type-json": "~0.3.2",
"graphql-ws": "~5.6.3",
"joi": "^14.3.1",
"lodash": "^4.17.21",
"mongodb": "^3.5.9",
"mongoose": "^5.12.4",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"redis": "^4.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.3.0",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@antfu/ni": "^0.13.2",
"@nestjs/cli": "^8.1.6",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^8.0.6",
"@types/cache-manager": "^3.4.2",
"@types/express": "^4.17.3",
"@types/jest": "25.2.3",
"@types/node": "^13.9.1",
"@types/passport-jwt": "^3.0.3",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"git-cz": "~4.8.0",
"jest": "26.0.1",
"supertest": "^4.0.2",
"ts-jest": "26.1.0",
"ts-loader": "^6.2.1",
"ts-morph": "~14.0.0",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.5.4",
"utility-types": "^3.10.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}