-
Notifications
You must be signed in to change notification settings - Fork 176
/
package.json
68 lines (68 loc) · 1.83 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": "@pmndrs/racing-game",
"version": "1.0.0",
"description": "🏎️ Open source racing game developed by anyone willing",
"keywords": [
"physics",
"cannon-es",
"vehicle",
"use-cannon"
],
"main": "src/main.jsx",
"dependencies": {
"@pmndrs/branding": "^0.0.8",
"@react-three/cannon": "^6.3.0",
"@react-three/drei": "^9.4.4",
"@react-three/fiber": "^8.0.12",
"@supabase/supabase-js": "^1.30.4",
"inter-ui": "^3.19.3",
"leva": "^0.9.21",
"lodash-es": "^4.17.21",
"react": "^18.0.0",
"react-colorful": "^5.5.1",
"react-dom": "^18.0.0",
"three": "^0.139.0",
"use-asset": "^1.0.4",
"zustand": "^3.7.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"three-stdlib": "^2.9.1",
"typescript": "^4.5.5",
"vite": "^2.8.4",
"vite-react-jsx": "^1.1.2"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"eslint": "eslint --cache src",
"eslint-fix": "eslint --fix --cache src",
"prettier": "prettier --list-different '**/*.{js,jsx,md,ts,tsx}'",
"prettier-fix": "prettier --write '**/*.{js,jsx,md,ts,tsx}'",
"prepare": "husky install"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,md}": "prettier --write"
}
}