-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.41 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
{
"name": "pixel-field",
"version": "1.0.0",
"description": "pixel field",
"main": "app.js",
"scripts": {
"build": "sh -x build.sh 2>&1",
"debug": "DEBUG=--no-babelrc sh +x build.sh",
"mongodb": "mkdir -p data && mongod --dbpath=./data --logpath=./data/log",
"cleardb": "mongo --eval 'db.tree.drop()' pixelField",
"start": "node ./build/`git rev-parse HEAD`/app.js || nodejs ./build/`git rev-parse HEAD`/app.js || node ./app.js || nodejs ./app.js || echo 'node not found or package not built'",
"help": "node ./build/`git rev-parse HEAD`/app.js --help || nodejs ./build/`git rev-parse HEAD`/app.js --help || node ./app.js --help || nodejs ./app.js --help || echo 'node not found or package not built'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hzhangxyz/pixelField.git"
},
"keywords": [
"pixel",
"field"
],
"author": "Hao Zhang",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/hzhangxyz/pixelField/issues"
},
"homepage": "https://github.com/hzhangxyz/pixelField#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"express": "^4.16.2",
"express-ws": "^3.0.0",
"mongoose": "^5.0.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-minify": "^0.2.0",
"babel-preset-env": "^1.6.1",
"jquery": "^3.3.1",
"localforage": "^1.5.6",
"two.js": "^0.7.0-alpha.1"
}
}