-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.45 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.45 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
{
"name": "sisinfo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"prod": "turbo run build && turbo run prod",
"kill": "npx kill-port 3000 8000",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:e2e": "cross-env TS_NODE_PROJECT=tsconfig.e2e.json cucumber-js",
"test:watch": "turbo run test:watch",
"test:cov": "turbo run test:cov"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.26",
"@cucumber/cucumber": "^11.3.0",
"@playwright/test": "^1.52.0",
"@tanstack/react-query": "^5.77.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bcrypt": "^5.0.2",
"@types/cucumber": "^6.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.15.3",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"cross-env": "^7.0.3",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-testing-library": "^7.1.1",
"gremlins.js": "^2.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.8.5",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"turbo": "^2.4.4",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.8.2",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@faker-js/faker": "^9.6.0",
"@nestjs/config": "^4.0.1",
"@nestjs/jwt": "^11.0.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/swagger": "^11.0.6",
"@next/env": "^15.3.3",
"@tanstack/react-form": "^1.0.5",
"@tanstack/zod-form-adapter": "^0.42.1",
"bcrypt": "^5.1.1",
"bcryptjs": "^3.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.7",
"cucumber": "^6.0.7",
"dotenv": "^16.4.7",
"eslint": "^9.23.0",
"framer-motion": "^12.5.0",
"gremlins-ts": "^0.2.4",
"html2canvas": "^1.4.1",
"html2canvas-pro": "^1.5.8",
"jose": "^6.0.10",
"jspdf": "^3.0.1",
"kill-port": "^2.0.1",
"papaparse": "^5.5.2",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"react-hook-form": "^7.54.2",
"ts-jest": "^29.2.6",
"xlsx": "^0.18.5",
"zod": "^3.24.2"
}
}