-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.71 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
{
"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.9.0",
"@prisma/client": "^5.20.0",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"chart.js": "^4.4.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv-cli": "^7.4.2",
"lucide-react": "^0.460.0",
"mathjs": "^13.1.1",
"next": "^15.1.0",
"postcode": "^5.1.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"react-spinners": "^0.14.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@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": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "3.3.3",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.2.5",
"tsuml2": "^0.17.0",
"typedoc": "^0.26.10",
"typescript": "^5"
}
}