-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.74 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.74 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "smart-power-socket",
"productName": "Smart Power Socket",
"version": "0.10.0",
"description": "Smart Power Socket - App for setting up your power socket",
"main": "main.js",
"scripts": {
"test": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --compilers js:babel-register --recursive --require ./test/setup.js test/**/*.spec.js",
"test-watch": "npm test -- --watch",
"test-e2e": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 mocha --compilers js:babel-register --require ./test/setup.js ./test/e2e.js",
"lint": "eslint --format=node_modules/eslint-formatter-pretty app test *.js",
"hot-server": "cross-env NODE_ENV=development node -r babel-register server.js",
"build-main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.electron.js --progress --profile --colors",
"build-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.production.js --progress --profile --colors",
"build": "npm run build-main && npm run build-renderer",
"start": "cross-env NODE_ENV=production electron ./",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron -r babel-register -r babel-polyfill ./main.development",
"package": "cross-env NODE_ENV=production node -r babel-register -r babel-polyfill package.js",
"package-all": "npm run package -- --all",
"postinstall": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\"",
"cleanup": "mop -v"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chentsulin/electron-react-boilerplate.git"
},
"author": {
"name": "C. T. Lin",
"email": "chentsulin@gmail.com",
"url": "https://github.com/chentsulin"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/chentsulin/electron-react-boilerplate/issues"
},
"keywords": [
"electron",
"boilerplate",
"react",
"react-router",
"flux",
"webpack",
"react-hot"
],
"homepage": "https://github.com/chentsulin/electron-react-boilerplate#readme",
"devDependencies": {
"asar": "^0.12.3",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-tcomb": "^0.3.17",
"babel-plugin-webpack-loaders": "^0.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"boiler-room-custodian": "^0.4.2",
"chai": "^3.5.0",
"concurrently": "^3.1.0",
"cross-env": "^3.1.1",
"css-loader": "^0.25.0",
"del": "^2.2.2",
"devtron": "^1.3.0",
"electron": "^1.4.3",
"electron-devtools-installer": "^2.0.1",
"electron-packager": "^8.1.0",
"electron-rebuild": "^1.2.1",
"enzyme": "^2.4.1",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-formatter-pretty": "^1.0.0",
"eslint-import-resolver-webpack": "^0.6.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-flowtype-errors": "^1.3.1",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-mocha": "^4.6.0",
"eslint-plugin-react": "^6.3.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.7.1",
"jsdom": "^9.6.0",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"mocha": "^3.1.0",
"node-libs-browser": "^1.0.0",
"react-addons-test-utils": "^15.3.2",
"redux-logger": "^2.7.0",
"sinon": "^1.17.6",
"spectron": "^3.4.0",
"style-loader": "^0.13.1",
"tcomb": "^3.2.15",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2",
"webpack-merge": "^0.14.1",
"webpack-validator": "^2.2.9"
},
"dependencies": {
"particle-gui": "particle-gui",
"axios": "^0.12.0",
"bootstrap": "^3.3.6",
"css-modules-require-hook": "^4.0.5",
"electron-debug": "^1.0.1",
"font-awesome": "^4.6.3",
"postcss": "^5.2.4",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"react-timer-mixin": "^0.13.3",
"redux": "^3.6.0",
"redux-form": "^5.2.5",
"redux-thunk": "^2.1.0",
"source-map-support": "^0.4.3"
},
"devEngines": {
"node": "4.x || 5.x || 6.x",
"npm": "3.x"
}
}