forked from bohendo/ck-mill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 880 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 880 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
{
"name": "cryptokitty-mill",
"version": "0.5.0",
"description": "",
"main": "",
"scripts": {
"watch": "webpack --watch --config webpack.config.js",
"start": "make && docker stack deploy -c ops/docker-compose.yml ckmill",
"reset": "docker stack rm ckmill && touch src/*.js && npm start",
"build": "webpack --config webpack.config.js",
"kittylogs": "docker service logs -f --no-task-ids ckmill_kittysync",
"salelogs": "docker service logs -f --no-task-ids ckmill_salesync",
"dblogs": "docker service logs -f --no-task-ids ckmill_postgres",
"deploy": "bash ops/deploy.sh"
},
"author": "",
"license": "GPLv3",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"web3": "^1.0.0-beta.26",
"webpack": "^3.10.0"
},
"dependencies": {
"pg": "^7.4.0"
}
}