-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.32 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
{
"name": "small-pos",
"private": false,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc --noEmit",
"scan:leakage": "node scripts/scan-leakage.mjs",
"test:scan-leakage": "node scripts/scan-leakage.mjs --self-test",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:payment": "playwright test --config playwright.payment.config.ts",
"test:e2e:order": "playwright test --config playwright.order-entry.config.ts",
"test:e2e:visual": "playwright test --config playwright.visual.config.ts",
"test:e2e:first-run": "playwright test --config playwright.first-run.config.ts",
"test:e2e:sell": "playwright test --config playwright.sell-flow.config.ts",
"verify:release": "npm run ci && npm run test:e2e && npm run test:e2e:payment && npm run test:e2e:order && npm run test:e2e:visual && npm run test:e2e:first-run && npm run test:e2e:sell",
"setup": "node scripts/setup.mjs",
"start": "node scripts/start.mjs",
"test:e2e:mobile": "playwright test --project=mobile",
"ci": "npm run typecheck && npx oxlint -c .oxlintrc.json src packages e2e scripts && npm test && npm run build && npm run scan:leakage",
"ci:e2e": "npm run ci && npm run test:e2e",
"lint": "oxlint -c .oxlintrc.json src packages e2e scripts",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^4.4.4",
"lucide-react": "^0.575.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.3.4",
"zustand": "^5.0.14"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"fake-indexeddb": "^6.2.5",
"jsdom": "^30.0.1",
"oxlint": "^1.71.0",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vitest": "^4.1.10"
}
}