-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "3d-tic-tac-toe",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"test": "vitest"
},
"dependencies": {
"@react-three/drei": "^9.7.1",
"@react-three/fiber": "^8.0.14",
"@react-three/postprocessing": "^2.3.2",
"classnames": "^2.3.1",
"framer-motion": "^6.5.1",
"framer-motion-3d": "^6.5.1",
"immer": "^9.0.15",
"leva": "^0.9.29",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"three": "^0.140.2",
"use-immer": "^0.7.0",
"vite-plugin-svgr": "^2.2.1"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/three": "^0.141.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.0",
"eslint-plugin-react": "^7.30.1",
"prettier": "^2.7.1",
"typescript": "^4.6.3",
"vite": "^4.0.4",
"vite-plugin-pwa": "^0.14.1",
"vitest": "^0.19.1"
}
}