forked from mrv777/ckstats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.94 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
{
"name": "ckstats",
"version": "0.2.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"postinstall": "prisma generate",
"prisma:generate": "pnpx prisma generate",
"prisma:migrate": "pnpx prisma migrate dev",
"seed": "node scripts/seed.js",
"update-stats": "ts-node scripts/updateStats.ts",
"update-users": "node scripts/updateUsers.js",
"cleanup": "node scripts/cleanOldStats.js",
"vacuum": "prisma db execute --stdin < scripts/vacuum.sql",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@prisma/client": "^5.21.0",
"@tanstack/react-query": "^5.59.0",
"bitcoinjs-lib": "^6.1.6",
"daisyui": "^4.12.10",
"next": "15.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.47",
"prisma": "^5.21.0",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
}