-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.65 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.65 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
{
"name": "taskmaster",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:analyze": "tsc -b && vite build --mode analyze",
"verify:codegen-graphql": "node scripts/verify-codegen-graphql.mjs",
"lint": "eslint .",
"verify": "npm run verify:codegen-graphql",
"check": "npm run lint && npm run verify && npm run build",
"preview": "vite preview",
"test:e2e:install": "playwright install",
"test:e2e": "playwright test",
"test:e2e:html": "playwright test --reporter=html",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.13.2",
"@chakra-ui/form-control": "^2.2.0",
"@chakra-ui/react": "^3.30.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"aws-amplify": "^6.15.10",
"framer-motion": "^12.23.26",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-router-dom": "^7.11.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@playwright/test": "^1.52.0",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"rollup-plugin-visualizer": "^6.0.5",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4"
},
"overrides": {
"lodash": "4.17.23"
}
}