This repository was archived by the owner on Jan 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.98 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.98 KB
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
{
"name": "node-api-backend",
"version": "0.0.0",
"description": "",
"author": "Guillaume Marcoux",
"private": true,
"license": "MIT",
"engines": {
"node": "16",
"npm": "7 || 8"
},
"scripts": {
"init": "gulp init",
"build": "gulp build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:debug:no-watch": "nest start --debug",
"start:prod": "node ./dist/main.js",
"clean:db": "gulp cleanDb",
"delete:dist": "gulp deleteDist",
"generate": "gulp setupPrisma",
"lint": "eslint \"{src,apps,libs,tests}/**/*.ts\"",
"lint:src": "eslint \"{src,apps,libs}/**/*.ts\"",
"lint:tests": "eslint \"tests/**/*.ts\"",
"lint:prisma": "prisma format",
"format:prettier": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:eslint": "eslint \"{src,apps,libs,tests}/**/*.ts\" --fix",
"test": "jest --config tests/.jest/jest.all-config.ts",
"test:specs": "jest --config tests/.jest/jest.specs-config.ts",
"test:e2e": "jest --config tests/.jest/jest.e2e-config.ts",
"test:watch": "npm run test -- --watch",
"test:cov": "npm run test -- --coverage"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@nestjs/common": "8.2.6",
"@nestjs/core": "8.2.6",
"@nestjs/graphql": "9.1.2",
"@nestjs/platform-express": "8.2.6",
"@paljs/plugins": "4.0.13",
"@prisma/client": "3.8.1",
"apollo-server-core": "3.6.2",
"apollo-server-express": "3.6.2",
"class-validator": "0.13.2",
"deepmerge": "4.2.2",
"dotenv": "10.0.0",
"dotenv-expand": "5.1.0",
"graphql": "15.8.0",
"graphql-depth-limit": "1.1.0",
"graphql-subscriptions": "1.2.1",
"graphql-ws": "5.5.5",
"nest-typed-config": "2.3.0",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.2"
},
"devDependencies": {
"@nestjs/cli": "8.2.0",
"@nestjs/schematics": "8.0.5",
"@nestjs/testing": "8.2.6",
"@types/express": "4.17.13",
"@types/faker": "5.5.9",
"@types/graphql-depth-limit": "1.1.3",
"@types/gulp": "4.0.9",
"@types/gulp-rename": "2.0.1",
"@types/gulp-replace": "0.0.31",
"@types/jest": "27.4.0",
"@types/node": "16.11.21",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"del": "6.0.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"faker": "5.5.3",
"graphql-config": "4.1.0",
"graphql-tag": "2.12.6",
"gulp": "4.0.2",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.3",
"gulp-typescript": "6.0.0-alpha.1",
"jest": "27.4.7",
"json5": "2.2.0",
"prettier": "2.5.1",
"prisma": "3.8.1",
"prisma-fixtures": "0.0.1",
"prisma-nestjs-graphql": "14.6.1",
"supertest": "6.2.2",
"ts-jest": "27.1.3",
"ts-loader": "9.2.6",
"ts-node": "10.4.0",
"tsconfig-paths": "3.12.0",
"typescript": "4.5.5"
}
}