-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 2.07 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
{
"name": "javascript-battle-website",
"version": "1.1.0",
"description": "Runs the battle viewer and runner",
"main": "server.js",
"scripts": {
"preinstall": "node script/check-package-manager.js",
"test": "yarn run lint; nyc mocha \"test/**/*.spec.js\"",
"lint": "eslint gamerunner/ server.js server/ routes/ database/ public/app/",
"start": "node server.js",
"build-engine": "yarn browserify $(yarn node -p \"require.resolve('ai-battle-engine')\") --standalone GameEngine > public/lib/game-engine.js",
"compile-tags": "riot public/app public/build/all-tags.js",
"build": "yarn run build-engine; yarn run compile-tags",
"migrate:make": "knex --knexfile ./database/config/knexfile.js migrate:make",
"migrate:rollback": "knex --knexfile ./database/config/knexfile.js migrate:rollback --all",
"migrate:latest": "knex --knexfile ./database/config/knexfile.js migrate:latest"
},
"repository": {
"type": "git",
"url": "https://github.com/JSJitsu/ai-battle-website.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JSJitsu/ai-battle-website/issues"
},
"homepage": "https://github.com/JSJitsu/ai-battle-website",
"dependencies": {
"ai-battle-engine": "https://github.com/JSJitsu/ai-battle-engine",
"better-console": "^1.0.1",
"body-parser": "^1.6.2",
"compression": "^1.7.4",
"connect-pg-simple": "^6.2.1",
"express": "^4.7.2",
"express-session": "^1.17.1",
"js-yaml": "^4.1.0",
"knex": "^0.95.10",
"milligram": "^1.4.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"pg": "^8.7.1",
"pg-db": "^2.0.0",
"q": "^1.0.1",
"request-promise-native": "^1.0.9",
"riot": "^3.13.2",
"riot-route": "^3.1.3",
"swagger-ui-express": "^4.1.4",
"zepto": "^1.2.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^6.7.2",
"istanbul": "^0.4.5",
"minimist": "^1.2.5",
"mocha": "^6.2.2",
"nyc": "^15.1.0",
"request": "^2.88.2"
}
}