-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "modernizing-existing-api",
"version": "1.0.0",
"description": "technical assessment for the fullstack developer interview",
"main": "index.js",
"scripts": {
"build": "nest build",
"start": "nodemon src/index.ts",
"serve": "node dist/index.js",
"test": "jest",
"test:e2e": "jest --config ./src/modern/test/jest-e2e.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"@nestjs/common": "^11.1.3",
"@nestjs/core": "^11.1.3",
"@nestjs/platform-express": "^11.1.3",
"@nestjs/testing": "^11.1.3",
"express": "^5.1.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"uuid": "^10.0.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"supertest": "^7.0.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.35.0"
}
}