-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.71 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
{
"name": "web-app-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "run-p --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint:typecheck": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"fix": "run-s --continue-on-error fix:eslint fix:prettier",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --write .",
"test": "vitest run",
"test:e2e": "playwright test",
"prepare": "lefthook install"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.13.13",
"@use-gesture/react": "^10.3.1",
"clsx": "^2.1.1",
"motion": "^12.23.24",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.38.0",
"@playwright/test": "^1.56.1",
"@tailwindcss/vite": "^4.1.14",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.0.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.38.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.4.0",
"jsdom": "^27.0.1",
"lefthook": "^2.0.0",
"npm-run-all2": "^8.0.4",
"playwright": "^1.56.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.0",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^7.1.10",
"vitest": "^4.0.0",
"wrangler": "^4.43.0"
}
}