-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 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
{
"name": "nodejs-interview-questions",
"version": "1.0.0",
"author": "Kamil Kulik",
"license": "ISC",
"scripts": {
"build:nest": "nest build",
"build:tsc": "tsc --build",
"lint": "eslint \"**/*.{ts,js}\" --fix"
},
"dependencies": {
"@apollo/server": "^4.9.5",
"@nestjs/apollo": "^12.0.11",
"@nestjs/cache-manager": "^2.2.0",
"@nestjs/common": "^9.4.0",
"@nestjs/core": "^9.4.0",
"@nestjs/graphql": "^12.0.11",
"@nestjs/platform-express": "^9.4.0",
"cache-manager": "^5.3.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-graphql": "^0.12.0",
"express-validator": "^7.0.1",
"graphql": "^16.8.1",
"helmet": "^6.1.5",
"i": "^0.3.7",
"inversify": "^6.0.1",
"inversify-binding-decorators": "^4.0.0",
"jest": "^29.5.0",
"joi": "^17.11.0",
"pg": "^8.13.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0",
"sequelize": "^6.31.1",
"sequelize-typescript": "^2.1.5",
"typeorm": "^0.3.16"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/multer": "^1.4.7",
"@types/node": "^20.11.0",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"sequelize-cli": "^6.6.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"jest": {
"collectCoverageFrom": [
"!**/node_modules/**",
"course-code/5-testing/**/*.{js,ts}"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tss?$"
}
}