This repository has been archived by the owner on Mar 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.32 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "electron-react-mobx-boilerplate",
"description": "Fast and up-to-date starter codebase for using Electron, React and MobX together. Minimalistic start, rapid prototyping, no bulls**t.",
"version": "1.0.0",
"author": {
"name": "niederschlag",
"email": "hello@krkn.co"
},
"scripts": {
"dev": "concurrently -k \"yarn dev:serve\" \"yarn dev:electron\"",
"dev:serve": "cross-env NODE_ENV=development webpack-dev-server --hot",
"dev:electron": "cross-env NODE_ENV=development electron index",
"build": "yarn private:clean && yarn build:dist && yarn build:wl",
"build:dev": "yarn private:clean && yarn build:dist && yarn build:wl --dir",
"build:dev:l": "yarn private:clean && yarn build:dist && yarn build:l --dir",
"build:dev:w": "yarn private:clean && yarn build:dist && yarn build:w --dir",
"build:dist": "cross-env NODE_ENV=production webpack --config webpack.production.config.js",
"build:wl": "build -wl",
"build:w": "build -w",
"build:l": "build -l",
"build:m": "build -m",
"private:clean": "yarn rimraf build dist",
"test": "jest"
},
"keywords": [
"electron",
"react",
"mobx",
"boilerplate"
],
"license": "MIT",
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>setupTests.js"
},
"dependencies": {
"babel-runtime": "6.26.0",
"electron-devtools-installer": "2.2.4",
"history": "4.7.2"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-jest": "22.4.4",
"babel-loader": "7.1.4",
"babel-plugin-dev-expression": "0.2.1",
"babel-plugin-styled-components": "1.5.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-mobx": "1.0.2",
"babel-preset-react": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"concurrently": "3.5.1",
"cross-env": "5.1.6",
"devtron": "1.4.0",
"electron": "2.0.2",
"electron-builder": "20.14.7",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-formatter-pretty": "1.3.0",
"eslint-import-resolver-webpack": "0.10.0",
"eslint-plugin-flowtype": "2.47.1",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jest": "21.15.2",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-react": "7.9.0",
"flow-bin": "0.72.0",
"flow-webpack-plugin": "1.2.0",
"html-webpack-plugin": "3.2.0",
"jest": "22.4.4",
"jest-enzyme": "6.0.0",
"mobx": "4.3.0",
"mobx-react": "5.1.2",
"react": "16.4.0",
"react-dom": "16.4.0",
"react-hot-loader": "4.2.0",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"rimraf": "2.6.2",
"styled-components": "3.2.6",
"webpack": "4.8.3",
"webpack-cli": "2.1.4",
"webpack-dev-server": "3.1.4"
}
}