-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "cavearium",
"version": "1.0.0",
"description": "2d game with procedural generated world",
"main": "index.js",
"scripts": {
"build:dev": "webpack",
"start": "node server/app.js",
"dev": "webpack-dev-server"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/pixi.js": "^4.8.9",
"@types/random": "^2.1.0",
"bitmap-to-boxes": "^1.0.0",
"express": "^4.17.1",
"ndarray-pack": "^1.2.1",
"open-simplex-noise": "^1.6.0",
"pixi-cull": "^0.5.0",
"pixi-viewport": "^4.2.2",
"pixi.js": "^5.1.3",
"planck-js": "^0.3.10",
"random": "^2.1.1",
"ts-loader": "^6.0.4",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"worley-noise": "^2.0.1"
},
"devDependencies": {
"webpack-dev-server": "^3.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iFullmetal/cavearium.git"
},
"bugs": {
"url": "https://github.com/iFullmetal/cavearium/issues"
},
"homepage": "https://github.com/iFullmetal/cavearium#readme"
}