-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "gokart.js",
"version": "0.0.1",
"author": "Nikolaj Baer <https://www.nikolajbaer.us>",
"description": "GoKart is a starting point for 3D web games based on ECSY, Three.js, Ammo.js with React HUD/UI",
"repository": {
"type": "git",
"url": "https://github.com/nikolajbaer/gokart.js.git"
},
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "vite build",
"dev": "vite --host 0.0.0.0 --port 8080",
"start": "vite serve --host 0.0.0.0 --port 8080",
"test": "ava"
},
"license": "MIT",
"dependencies": {
"@tweenjs/tween.js": "^18.6.4",
"ammo.js": "github:kripken/ammo.js",
"ecsy": "^0.4.2",
"howler": "^2.2.1",
"mobx": "^6.1.8",
"mobx-react-lite": "^3.2.0",
"planck-js": "^0.4.0-alpha.1",
"three": "^0.132.2"
},
"devDependencies": {
"ava": "^3.15.0",
"@vitejs/plugin-react": "^1.0.4",
"mock-browser": "^0.92.14",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"simplex-noise": "^2.4.0",
"vite": "^2.6.7"
},
"keywords": [
"3d",
"WebGL",
"canvas",
"game",
"physics"
]
}