-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "shoperp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test:smoke": "tsx --test tests/smoke/erp-flows.test.ts",
"db:apply": "tsx scripts/apply-schema.ts",
"db:seed": "tsx scripts/seed-admin.ts",
"db:demo-products": "tsx scripts/seed-products.ts"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@tanstack/react-query": "^5.96.2",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"cookie": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.4.1",
"jsonwebtoken": "^9.0.3",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.7",
"lucide-react": "^1.7.0",
"mysql2": "^3.20.0",
"next": "16.2.2",
"next-pwa": "^5.6.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.72.1",
"react-hot-toast": "^2.6.0",
"recharts": "^3.8.1",
"xlsx": "^0.18.5",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/jsonwebtoken": "^9.0.10",
"@types/minimatch": "^6.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}