-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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
60
61
62
63
64
65
66
67
68
{
"name": "taal",
"version": "0.1.0",
"private": true,
"dependencies": {
"@react-three/drei": "^9.105.6",
"@react-three/fiber": "^8.16.3",
"lodash.debounce": "^4.0.8",
"noisejs": "^2.1.0",
"react": "^18.3.1",
"react-detect-click-outside": "^1.1.7",
"react-dom": "^18.3.1",
"three": "^0.165.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0",
"zustand": "^4.5.5"
},
"scripts": {
"start": "vite --host",
"build": "tsc && vite build",
"serve": "vite preview",
"deploy": "tsc && vite build && firebase deploy --only hosting:taal",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier . --write"
},
"browserslist": {
"production": [
"defaults",
"not IE <= 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"@types/node": "^22.5.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.165.0",
"@types/lodash.debounce": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitejs/plugin-react": "^4.2.1",
"classnames": "^2.3.2",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"firebase": "^10.12.5",
"prettier": "^3.0.3",
"sass": "^1.77.8",
"typescript": "^5.4.5",
"vite": "^5.4.7",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1"
}
}