forked from nicrausaz/toonks-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "toonks-game",
"private": true,
"version": "0.0.0",
"description": "A multiplayer React & Three.js game",
"contributors": [
"Maxime Scharwath",
"Nicolas Crausaz",
"Lazar Pavicevic"
],
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"fix": "eslint --fix .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@react-three/drei": "^9.53.3",
"@react-three/fiber": "^8.10.0",
"@vercel/analytics": "^0.1.8",
"chroma-js": "^2.4.2",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"emittery": "^1.0.1",
"enable3d": "^0.25.3",
"framer-motion": "^8.5.0",
"howler": "^2.2.3",
"lil-gui": "^0.17.0",
"matter-js": "^0.18.0",
"nanoid": "^4.0.0",
"peerjs": "^1.4.7",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.7.0",
"react-use": "^17.4.0",
"short-uuid": "^4.2.2",
"stats.js": "^0.17.0",
"three": "^0.148.0",
"zustand": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-vite": "^0.3.0",
"@storybook/react": "^6.5.15",
"@storybook/testing-library": "^0.0.13",
"@types/chroma-js": "^2.1.4",
"@types/howler": "^2.2.7",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.8",
"@types/react-modal": "^3.13.1",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.148.0",
"@typescript-eslint/eslint-plugin": ">=5.48.2",
"@typescript-eslint/parser": ">=5.48.2",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"eslint": "^8.32.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.55.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-storybook": "^0.6.10",
"eslint-plugin-tailwindcss": "^3.7.1",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"typescript": ">=4.9.4",
"vite": "^4.0.3",
"vite-tsconfig-paths": "4.0.5"
}
}