-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 KB
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
{
"name": "babylonjs-doom-clone",
"version": "1.0.0",
"description": "# To do 1. Modularize everything into ES6 modules. 2. Create wall collision for monsters. 3. Fix lighting on gun (maybe impossible?). 4. Create a health UI.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack && node server.js",
"dev": "webpack-dev-server --content-base public/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CelesteComet/BabylonJS-Doom-Clone.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CelesteComet/BabylonJS-Doom-Clone/issues"
},
"homepage": "https://github.com/CelesteComet/BabylonJS-Doom-Clone#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"webpack": "^3.8.1"
},
"dependencies": {
"babylonjs": "^3.1.0-beta1.0",
"babylonjs-gui": "^3.1.0-beta1.0",
"easystarjs": "^0.4.1",
"express": "^4.16.2",
"pathfinding": "^0.4.18"
}
}