-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.32 KB
/
package.json
File metadata and controls
79 lines (79 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "bemorefrontend",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:analyze": "tsc -b && vite build && npm run analyze-bundle",
"analyze-bundle": "node scripts/analyze-bundle.js",
"lint": "eslint .",
"typecheck": "tsc -b --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"preview": "vite preview",
"prepare": "husky",
"verify": "tsx scripts/verify-project.ts",
"verify:flow": "tsx scripts/verify-user-flow.ts",
"verify:session": "tsx scripts/verify-session-flow.ts",
"verify:full": "npm run verify && npm run e2e",
"verify:ci": "npm run verify && npm run build && npm run e2e"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@mediapipe/camera_utils": "^0.3.1675466862",
"@mediapipe/face_mesh": "^0.4.1633559619",
"@sentry/browser": "^7.120.0",
"axios": "^1.12.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.65.0",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^6.30.1",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@axe-core/react": "^4.9.1",
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^2.1.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"postcss": "^8.5.6",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.18",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^5.4.21",
"vitest": "^2.1.4",
"webpack-bundle-analyzer": "^4.10.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
}
}