-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 KB
/
package.json
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": "rc-store",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "npm run build && wrangler pages dev ./dist",
"deploy": "npm run build && wrangler pages deploy ./dist"
},
"dependencies": {
"@headlessui/react": "^2.1.4",
"@heroicons/react": "^2.1.5",
"@react-three/drei": "^9.109.2",
"@react-three/fiber": "^8.16.8",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.8",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.54.1",
"@types/three": "^0.167.1",
"heroicons": "^2.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1",
"three": "^0.167.1",
"three-stdlib": "^2.32.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240821.1",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/browser": "^2.0.5",
"@vitest/coverage-v8": "^2.1.3",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jsdom": "^25.0.1",
"playwright": "^1.46.1",
"postcss": "^8.4.44",
"tailwindcss": "^3.4.10",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vitest": "^2.1.3",
"wrangler": "^3.74.0"
}
}