-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.52 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
{
"name": "heartbeat",
"description": "Monitor remote health endpoints. See if your services are up!",
"version": "1.0.0",
"author": "ackzell <[email protected]>",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --progress",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules && cp -R ./public ./dist/public",
"icon": "node ./node_modules/png2icns/cli.js ./src/images/heartbeat.png -o ./dist/public/icon.icns",
"nwdev": "concurrently --kill-others --raw \"npm run dev\" \"./node_modules/.bin/run --mac --x64 ./launch\" ",
"nwbuild": "./node_modules/.bin/build --mac --x64 ./dist && open ./dist/nw-builds",
"nwpack": "npm run icon && npm run build && ./node_modules/.bin/build --mac --x64 ./dist && open ./dist/nw-builds"
},
"dependencies": {
"nedb": "^1.8.0",
"ping-monitor": "^0.1.6",
"png2icns": "0.0.1",
"vue": "2.4.2",
"vue-router": "2.7.0",
"vuetify": "^0.15.7",
"vuex": "2.3.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^6.0.0",
"babel-preset-latest": "^6.0.0",
"babel-preset-stage-2": "^6.24.1",
"concurrently": "^3.5.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"nwjs-builder-phoenix": "^1.14.6",
"prettier": "^1.5.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.11.1"
}
}