forked from conflictserpent/battlesnake-server-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 884 Bytes
/
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
{
"author": "Dylan Kendal <dylan.kendal@shopify.com>",
"devDependencies": {
"commander": "^2.14.0",
"cypress": "^2.0.3",
"husky": "^0.14.3",
"jq": "^1.7.2",
"lint-staged": "^7.0.0",
"node-gyp": "^3.6.2",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"winston": "^2.4.0"
},
"license": "MIT",
"main": "index.js",
"name": "battle_snake",
"repository": "git@github.com:sendwithus/battlesnake-server.git",
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"install": "cd ./assets && yarn install",
"precommit": "lint-staged",
"webpack": "cd ./assets && yarn webpack",
"webpack:production": "NODE_ENV=production yarn webpack",
"docker:build": "docker build -t sendwithus/battlesnake-server . && docker push sendwithus/battlesnake-server"
},
"version": "1.0.0",
"dependencies": {}
}