-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.02 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
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
{
"name": "next-shopper",
"version": "0.1.0",
"private": true,
"scripts": {
"@postinstall": "echo 'https://www.prisma.io/docs/orm/prisma-client/deployment/edge/deploy-to-vercel#generate-prisma-client-in-postinstall-hook'",
"build": "next build",
"codequality": "pnpm format && pnpm lint && pnpm types:check",
"codequality:fix": "pnpm format:fix && pnpm lint:fix && pnpm types:check",
"db:migrate": "dotenv -e .env.local prisma migrate dev",
"db:reset": "dotenv -e .env.local prisma migrate reset",
"db:seed": "dotenv -e .env.local prisma db seed",
"db:start": "docker compose -f docker/development/compose.yaml up -d",
"db:stop": "docker compose -f docker/development/compose.yaml down",
"dev": "next dev",
"format": "prettier --check --ignore-unknown .",
"format:fix": "prettier --write --ignore-unknown .",
"postinstall": "pnpm types:generate",
"lint": "eslint --max-warnings 0",
"lint:fix": "eslint --fix --max-warnings 0",
"prepare": "husky",
"start": "next start",
"types:check": "pnpm types:generate && tsc --noEmit",
"types:generate": "prisma generate && next typegen",
"unused": "knip",
"updates": "npm-check-updates -i"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.0",
"@hookform/resolvers": "^5.2.2",
"@number-flow/react": "^0.5.10",
"@prisma/client": "^6.18.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "^4.1.16",
"better-auth": "^1.3.34",
"class-variance-authority": "^0.7.1",
"http-status-codes": "^2.3.0",
"immer": "^10.1.3",
"motion": "^12.23.24",
"next": "^16.1.0",
"next-themes": "^0.4.6",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.71.2",
"react-icons": "^5.5.0",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.16",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^24.9.1",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"dotenv-cli": "^10.0.0",
"eslint": "^9.38.0",
"eslint-config-next": "16.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-unicorn": "^61.0.2",
"husky": "^9.1.7",
"knip": "^5.66.2",
"lint-staged": "^16.2.6",
"npm-check-updates": "^19.1.1",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^2.5.19",
"prettier-plugin-tailwindcss": "^0.7.1",
"prisma": "^6.18.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"packageManager": "pnpm@10.19.0"
}