forked from jelster/space-truckers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"name": "space-truckers",
"version": "1.0.0",
"description": "A game built in BabylonJS. Companion to book Going the Distance with Babylon.js",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx webpack serve --config webpack.dev.js",
"build": "npx webpack --config webpack.prod.js",
"lint": "npx eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jelster/space-truckers.git"
},
"keywords": [
"BabylonJS",
"Game"
],
"author": "Josh Elster",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jelster/space-truckers/issues"
},
"homepage": "https://github.com/jelster/space-truckers#readme",
"devDependencies": {
"@babylonjs/core": "^5.1 < 6.0.0",
"@babylonjs/gui": "^5.1 < 6.0.0",
"@babylonjs/gui-editor": "^5.14.1",
"@babylonjs/inspector": "^5.1 < 6.0.0",
"@babylonjs/loaders": "^5.1 < 6.0.0",
"@babylonjs/materials": "^5.1 < 6.0.0",
"@babylonjs/post-processes": "^5.1 < 6.0.0",
"@babylonjs/procedural-textures": "^5.1 < 6.0.0",
"@babylonjs/serializers": "^5.1 < 6.0.0",
"ammo.js": "github:kripken/ammo.js",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.13.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0",
"source-map-loader": "^4.0",
"url-loader": "^4.1.1",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.2.1",
"webpack-merge": "^5.7.3",
"workbox-webpack-plugin": "^6.5.3"
}
}