-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 881 Bytes
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
{
"name": "PixiCulling",
"version": "0.8.5",
"description": "A cell based culling engine for Pixi",
"main": "./build/index.html",
"repository": "git@github.com:ErikSom/PixiCulling.git",
"author": "Erik Sombroek",
"license": "MIT",
"scripts": {
"build": "env NODE_ENV=production yarn webpack",
"watch": "npm-run-all --parallel watch:*",
"watch:webpack": "webpack --watch",
"watch:server": "yarn run server",
"watch:code": "code .",
"server": "http-server build"
},
"dependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.24.1",
"http-server": "^0.11.1",
"npm-run-all": "^4.1.3",
"pixi.js": "^4.8.2",
"stats.js": "^0.17.0",
"webpack": "3.11.0"
},
"devDependencies": {}
}