-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.88 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "Allow2Automate",
"productName": "Allow2Automate",
"version": "1.2.0",
"description": "Using Allow2 to control access and quotas for electricity via home automation devices",
"main": "init.js",
"author": {
"name": "Allow2CEO",
"email": "[email protected]"
},
"repository": "https://github.com/Allow2/Allow2Automate",
"license": "CUSTOM",
"dependencies": {
"allow2": "^1.0.0",
"async": "^2.6.2",
"babel-runtime": "^6.22.0",
"dialogs": "^1.1.20",
"electron-modal": "^1.0.0",
"electron-redux": "^1.3.1",
"history": "^4.6.3",
"material-ui": "^0.20.2",
"moment": "^2.24.0",
"moment-timezone": "^0.5.23",
"node-localstorage": "^1.3.1",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-redux": "^5.1.1",
"react-router": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.8",
"redux": "^3.0.0",
"redux-actions": "^2.6.4",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"reselect": "^3.0.1",
"wemo-client": "^0.15.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.1.18",
"browser-sync": "^2.26.3",
"chai": "^4.2.0",
"electron": "^2.0.7",
"electron-builder": "^20.38.5",
"electron-devtools-installer": "^2.2.4",
"electron-mocha": "^5.0.0",
"eslint": "^4.3.0",
"eslint-plugin-react": "^7.12.4",
"npm-run-all": "^4.1.5",
"redux-mock-store": "^1.5.3",
"rimraf": "^2.6.3"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"develop": "npm run private:compile -- --source-maps true && run-p -r private:watch private:serve",
"test": "electron-mocha --renderer -R spec --require babel-core/register test/**/*.spec.js",
"lint": "eslint --no-ignore scripts app test *.js",
"icons": "electron-icon-maker --input=./images/icon.png --output=./app/assets",
"pack": "run-s private:clean private:compile private:build:all",
"pack:mac": "run-s private:clean private:compile private:build:mac",
"pack:win": "run-s private:clean private:compile private:build:win",
"pack:linux": "run-s private:clean private:compile private:build:linux",
"private:build:all": "electron-builder -mwl",
"private:build:mac": "electron-builder --mac",
"private:build:win": "electron-builder --win",
"private:build:linux": "electron-builder --linux",
"private:watch": "npm run private:compile -- --source-maps true --watch --skip-initial-build",
"private:serve": "babel-node scripts/serve.js",
"private:compile": "babel app/ --copy-files --out-dir build",
"private:clean": "rimraf build"
}
}