-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.12 KB
/
package.json
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
{
"name": "pgt-web-app",
"version": "0.1.34",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run build:workers && (next dev & npm run bree:cron:dev & wait)",
"dev:https": "NODE_TLS_REJECT_UNAUTHORIZED=0 next dev --experimental-https --experimental-https-key ./localhost-key.pem --experimental-https-cert ./localhost.pem",
"build": "next build && npm run internal:copy-public && npm run build:workers && npm run internal:copy-dist",
"build:workers": "npx tsx src/scripts/build-workers.ts",
"start": "npx prisma migrate deploy && next start",
"start:prod": "prisma migrate deploy && (node server.js & npm run bree:cron:prod & wait)",
"bree:cron:dev": "npx tsx src/scripts/bree-runner.ts",
"bree:cron:prod": "node dist/scripts/bree-runner.js",
"internal:copy-public": "cp -r public .next/standalone/",
"internal:copy-dist": "cp -r dist .next/standalone/",
"lint": "next lint",
"lint:full": "next lint --max-warnings=0",
"lint:types": "tsc --noEmit",
"lint:all": "npm run lint:full && npm run lint:types",
"admin:status": "npx tsx src/scripts/toggle-admin-status.ts"
},
"dependencies": {
"@ladjs/graceful": "^4.1.0",
"@prisma/client": "^5.22.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-hover-card": "^1.1.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.4",
"bree": "^9.2.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"decimal.js": "^10.4.3",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"framer-motion": "^11.15.0",
"hash-wasm": "^4.11.0",
"jose": "^5.9.6",
"loglevel": "^1.9.2",
"loglevel-plugin-prefix": "^0.8.4",
"lucide-react": "^0.453.0",
"mina-signer": "^3.0.7",
"next": "15.0.1",
"next-pwa": "^5.6.0",
"next-themes": "^0.3.0",
"react": "18.3.1",
"react-day-picker": "^8.10.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "18.3.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.17.4",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"esbuild": "^0.24.0",
"eslint": "9.16.0",
"eslint-config-next": "15.0.1",
"postcss": "^8",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^5"
}
}