-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.88 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.88 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
{
"name": "helldivers.bot",
"version": "0.16.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node .next/standalone/server.js",
"docker": "prisma migrate deploy && node server.js",
"format": "chokidar 'src/**/*.{js,jsx,ts,tsx}' -c 'npx prettier --write .'",
"test": "vitest run && playwright test",
"test:unit": "vitest",
"test:unit:run": "vitest run",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:smoke": "playwright test src/__tests__/e2e/smoke.spec.mjs"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.3",
"@auth/prisma-adapter": "^2.11.1",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@sentry/nextjs": "^10.46.0",
"axios": "^1.14.0",
"dotenv": "^17.3.1",
"humanize-duration": "^3.33.2",
"next": "^16.2.1",
"next-auth": "^5.0.0-beta.30",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"swagger-ui-dist": "^5.32.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@vitest/coverage-v8": "^4.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"chokidar-cli": "^3.0.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.6.0",
"tailwindcss": "^4.2.2",
"vitest": "^4.1.2"
},
"overrides": {
"prisma": {
"hono": ">=4.12.7",
"@hono/node-server": ">=1.19.10",
"lodash": ">=4.17.23",
"effect": ">=3.20.0"
}
}
}