-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.14 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
{
"name": "hydroponics-api",
"version": "1.0.0",
"description": "The REST API for the Integrated Hydroponics Farm System For Optimizing Agriculture Production project.",
"authors": [
"Eduardo Freitas <eduardofragadefretas@gmail.com>",
"Sofia Martins <sofia.martinslv@hotmail.com>"
],
"license": "MIT",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts"
},
"dependencies": {
"@nestjs/common": "^11.0.1",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.1",
"@nestjs/jwt": "^11.0.0",
"@nestjs/mongoose": "^11.0.3",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.0.1",
"@prisma/client": "^6.7.0",
"@types/date-fns": "^2.5.3",
"bcryptjs": "^3.0.2",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"mongoose": "^8.14.1",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"zod": "^3.24.3",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@faker-js/faker": "^9.8.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.24",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/node": "^22.10.7",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^3.1.3",
"dotenv": "^16.5.0",
"eslint": "^9.25.1",
"globals": "^16.0.0",
"prisma": "^6.7.0",
"source-map-support": "^0.5.21",
"supertest": "^7.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.31.1",
"unplugin-swc": "^1.5.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.3"
}
}