-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.75 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
{
"name": "receipt-to-form-autofill",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings=0",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:api": "vitest run tests/api",
"test:ui": "vitest run tests/ui",
"test:e2e": "node tests/e2e/run-e2e.mjs",
"test:e2e:live": "node tests/e2e/run-e2e.mjs --live tests/e2e/live-gemini.spec.ts",
"test:e2e:ui": "playwright test --ui",
"audit": "npm audit --audit-level=moderate",
"audit:prod": "npm audit --omit=dev --audit-level=moderate",
"test:all": "npm run lint && npm run typecheck && npm run build && npm run test && npm run test:e2e",
"ci": "npm run lint && npm run typecheck && npm run build && npm run test"
},
"engines": {
"node": ">=20.19.0"
},
"overrides": {
"postcss": "$postcss"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^1.3.1",
"clsx": "^2.1.1",
"lucide-react": "^1.14.0",
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.0",
"jsdom": "^29.1.1",
"postcss": "8.5.14",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vitest": "^4.1.6"
}
}