-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "webgl-voxel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run prod",
"dev": "webpack-dev-server --mode=development",
"prod": "webpack --mode=production",
"map": "ts-node map/index.ts",
"mapdev": "nodemon --config map/nodemon.json",
"models": "ts-node models/index.ts",
"modelsdev": "nodemon --config models/nodemon.json",
"host": "http-server ./docs",
"itch": "npm run prod && butler push ./docs bencoveney/the-mobius-grand:web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencoveney/webgl-voxel.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bencoveney/webgl-voxel/issues"
},
"homepage": "https://github.com/bencoveney/webgl-voxel#readme",
"dependencies": {
"entity-component-system": "^4.0.5",
"three": "^0.106.2"
},
"devDependencies": {
"@types/pngjs": "^3.3.2",
"copy-webpack-plugin": "^5.0.3",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"ngraph.graph": "^18.0.0",
"ngraph.path": "^1.2.0",
"nodemon": "^1.19.1",
"pngjs": "^3.4.0",
"scss-config-webpack-plugin": "^1.3.1",
"ts-config-webpack-plugin": "^1.3.1",
"ts-node": "^8.3.0",
"typescript": "^3.4.5",
"webpack": "^4.32.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
}
}