-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.36 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "dm-commerce-os",
"version": "0.2.0",
"private": true,
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24.0.0"
},
"scripts": {
"setup": "node scripts/setup-bootstrap.mjs",
"dev": "next dev",
"build": "next build",
"start": "next start",
"smoke": "node --import tsx scripts/smoke.ts",
"smoke:production": "node --import tsx scripts/smoke.ts --production",
"validate:fixtures": "node --import tsx scripts/validate-delivery-files.ts",
"lint": "node --no-warnings ./node_modules/eslint/bin/eslint.js . --max-warnings=0",
"typecheck": "next typegen && tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"db:seed": "node --import tsx prisma/seed.ts",
"check:conflicts": "node --import tsx scripts/check-merge-conflicts.ts",
"test:install": "playwright install --with-deps",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"scan:sensitive": "node --import tsx scripts/scanSensitive.ts",
"sanitize": "node --import tsx scripts/sanitize.ts",
"prepush": "npm run check:conflicts && npm run scan:sensitive",
"postinstall": "simple-git-hooks",
"oneclick": "node --import tsx scripts/oneclick.ts",
"doctor": "node --import tsx scripts/doctor.ts",
"reset:demo": "node --import tsx scripts/reset-demo.ts",
"setup:win": "powershell -ExecutionPolicy Bypass -File ./scripts/bootstrap.ps1",
"setup:unix": "bash ./scripts/bootstrap.sh"
},
"dependencies": {
"@prisma/client": "^5.19.1",
"@radix-ui/react-scroll-area": "^1.0.5",
"@tanstack/react-table": "^8.20.5",
"cmdk": "^1.0.0",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^11.5.6",
"lucide-react": "^0.360.0",
"next": "16.3.4",
"next-themes": "^0.3.0",
"recharts": "^2.12.7",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"rehype-sanitize": "^6.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swr": "^2.2.5",
"zod": "^3.23.8",
"class-variance-authority": "^0.7.0",
"tailwind-merge": "^2.3.0",
"react-hook-form": "^7.53.0",
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-popover": "^1.0.7",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.14.10",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.18",
"eslint": "^9.39.5",
"eslint-config-next": "16.3.4",
"fast-glob": "^3.3.2",
"istextorbinary": "^9.5.0",
"picomatch": "^4.0.2",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"table": "^6.8.2",
"postcss": "^8.4.35",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vitest": "^4.1.11",
"simple-git-hooks": "^2.9.0"
},
"simple-git-hooks": {
"pre-commit": "npm run check:conflicts",
"pre-push": "npm run check:conflicts && npm run scan:sensitive"
}
}