-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.78 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
99
100
101
{
"name": "@aegis/source",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "nx run-many --target=build --all --verbose",
"backend": "nx run-many --target=serve --all --watch --skip-nx-cache",
"frontend": "cd apps/frontend && npx next dev",
"test": "npx jest"
},
"private": true,
"dependencies": {
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/supertest": "^6.0.3",
"argon2": "^0.44.0",
"axios": "^1.6.0",
"cls-rtracer": "^2.6.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"express-http-proxy": "^2.1.2",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.9.2",
"jsonwebtoken": "^9.0.3",
"next": "~16.0.1",
"node-cron": "^4.2.1",
"opossum": "^9.0.0",
"password-validator": "^5.3.0",
"pg": "^8.18.0",
"pino": "^10.2.0",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"supertest": "^7.2.2",
"ua-parser-js": "^2.0.9",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@nx/eslint": "22.3.3",
"@nx/eslint-plugin": "22.3.3",
"@nx/express": "^22.3.3",
"@nx/jest": "22.3.3",
"@nx/js": "22.3.3",
"@nx/next": "^22.3.3",
"@nx/node": "22.3.3",
"@nx/web": "22.3.3",
"@nx/webpack": "22.3.3",
"@nx/workspace": "22.3.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@swc/jest": "~0.2.38",
"@tailwindcss/postcss": "^4.3.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/express-http-proxy": "^1.6.7",
"@types/ioredis": "^4.28.10",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.9",
"@types/node-cron": "^3.0.11",
"@types/opossum": "^8.1.9",
"@types/pg": "^8.16.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ua-parser-js": "^0.7.39",
"autoprefixer": "10.4.13",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"jest": "^30.0.2",
"jest-environment-node": "^30.0.2",
"jest-util": "^30.0.2",
"nx": "22.3.3",
"postcss": "^8.4.38",
"prettier": "~3.6.2",
"prisma": "^7.3.0",
"react-refresh": "^0.10.0",
"tailwindcss": "^4.3.0",
"ts-jest": "^29.4.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.40.0",
"webpack-cli": "^5.1.4"
},
"workspaces": [
"apps/*"
]
}