-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.3 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
91
92
93
94
95
{
"name": "Saucisson",
"version": "0.0.1",
"main": "main.js",
"scripts": {
"lint": "$(yarn bin)/eslint app *.js --fix",
"start-hot-server": "cross-env NODE_ENV=development node -r babel-register server.js",
"start-hot-renderer": "cross-env HOT=1 NODE_ENV=development electron -r babel-register -r babel-polyfill ./main.development",
"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": "yarn run build-main && yarn run build-renderer",
"start": "cross-env NODE_ENV=production electron ./"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"devDependencies": {
"asar": "^0.12.2",
"babel-core": "^6.14.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-webpack-loaders": "^0.7.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"boiler-room-custodian": "^0.4.1",
"chai": "^3.5.0",
"concurrently": "^3.0.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"del": "^2.2.2",
"devtron": "^1.3.0",
"electron": "^1.3.4",
"electron-devtools-installer": "^2.0.1",
"electron-packager": "^8.1.0",
"electron-rebuild": "^1.2.1",
"enzyme": "^2.4.1",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-import-resolver-webpack": "^0.6.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.7.1",
"jsdom": "^9.4.3",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"mocha": "^3.0.2",
"node-libs-browser": "^1.0.0",
"yarn": "^3.10.8",
"react-addons-test-utils": "^15.3.2",
"redux-logger": "^2.6.1",
"sinon": "^1.17.6",
"spectron": "^3.3.0",
"standard": "^8.3.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-merge": "^0.14.1",
"webpack-validator": "^2.2.7"
},
"dependencies": {
"css-modules-require-hook": "^4.0.3",
"electron-config": "^0.2.1",
"electron-debug": "^1.0.1",
"font-awesome": "^4.6.3",
"howler": "^2.0.0",
"postcss": "^5.1.2",
"ramda": "^0.22.1",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-motion": "^0.4.5",
"react-redux": "^4.4.5",
"react-router": "^2.8.0",
"react-router-redux": "^4.0.6",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"resemblance": "^1.0.0",
"source-map-support": "^0.4.2"
}
}