-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.84 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
{
"name": "fairhold-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run dev:db && next dev",
"dev:db": "docker compose --env-file .env.local up -d",
"backup": "docker compose --env-file .env.production run --rm dbtools bash /scripts/backup.sh",
"restore": "docker compose --env-file .env.local run --rm dbtools bash /scripts/restore.sh",
"build": "npm run prisma:generate && next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest; open ./coverage/lcov-report/index.html",
"prisma:pull": "dotenv -e .env.local -- npx prisma db pull",
"prisma:generate": "prisma generate",
"prisma:migrate": "dotenv -e .env.local -- npx prisma migrate dev",
"prisma:migrate-create-only": "dotenv -e .env.local -- npx prisma migrate dev --create-only",
"prisma:studio": "dotenv -e .env.local -- npx prisma studio",
"postinstall": "npm run prisma:generate",
"prettier": "prettier --write .",
"prepare": "husky",
"docs": "typedoc && npm run map",
"map": "tsuml2 --glob app/models/**/*.ts --modifiers false --propertyTypes false -m -o docs/class-map.svg"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@prisma/client": "^6.3.0",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-slot": "^1.1.0",
"chart.js": "^4.4.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv-cli": "^8.0.0",
"lucide-react": "^0.474.0",
"mathjs": "^14.0.1",
"next": "^15.1.5",
"postcode": "^5.1.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"react-spinners": "^0.15.0",
"recharts": "^2.15.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"vaul": "^1.1.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.3.0",
"postcss": "^8",
"prettier": "3.4.2",
"prisma": "^6.3.0",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.5",
"tsuml2": "^0.17.1",
"typedoc": "^0.27.6",
"typescript": "^5"
}
}