forked from pmndrs/racing-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"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/index.js",
"dependencies": {
"@pmndrs/branding": "^0.0.7",
"@react-three/cannon": "1.2.2",
"@react-three/drei": "5.3.0",
"@react-three/fiber": "6.2.2",
"@react-three/postprocessing": "2.0.3",
"@types/three": "0.128.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"three": "0.129.0",
"zustand": "^3.5.1"
},
"devDependencies": {
"prettier": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettier": "prettier --list-different '**/*.{js,jsx,md}'",
"prettier-fix": "prettier --write '**/*.{js,jsx,md}'"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"license": "MIT"
}