-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.8 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "power",
"version": "0.0.1",
"description": "Power the 1v1 turn-based strategy game",
"main": "app.js",
"directories": {
"test": "tests"
},
"scripts": {
"watch": "./watch_files.sh",
"test": "./handle_watched_file.sh /tests/all.mjs",
"start-dev": "./web-server.sh --start --port 8000",
"start": "./web-server.sh --start --type dist --port ${PORT}",
"stop": "./web-server.sh --stop",
"markdown": "npm exec markdown README.md --flavor gfm --context marcel-valdez/power > ./dist/rules.html",
"build": "npm exec gulp && npm run markdown",
"build-start": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcel-valdez/power.git"
},
"keywords": [
"power",
"chess",
"game",
"strategy",
"board-game",
"turn-based"
],
"author": "Marcel Valdez",
"license": "BSL-1.0",
"bugs": {
"url": "https://github.com/marcel-valdez/power/issues"
},
"homepage": "https://github.com/marcel-valdez/power#readme",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/pluginutils": "^3.0.8",
"get-port": "^5.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-csso": "^4.0.1",
"gulp-minify": "^3.1.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-rollup": "^2.17.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser-js": "^5.1.2",
"markdown-to-html": "0.0.13",
"rollup": "^2.2.0",
"socket.io": "^2.5.0"
},
"dependencies": {
"express": "^4.17.3",
"htm": "^3.0.3",
"preact": "^10.3.4",
"yargs": "^15.3.1"
}
}