This repository has been archived by the owner on Dec 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
108 lines (108 loc) · 3.54 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"private": true,
"name": "radiant-player",
"version": "2.0.0",
"description": "something",
"main": "app/main.js",
"license": "MIT",
"scripts": {
"build-dll": "cross-env NODE_ENV=development webpack --config webpack/lib/dll.js --progress --colors",
"build:dist": "cross-env NODE_ENV=production gulp build",
"build": "gulp build",
"clean": "gulp clean",
"dev": "cross-env START_HOT=1 npm run hot-updates-server",
"flow-typed": "flow-typed install",
"hot-updates-server": "cross-env NODE_ENV=development webpack-dev-server --config webpack/apps/ui.js",
"lint": "eslint .",
"postinstall": "electron-rebuild",
"start-hot-renderer": "cross-env HOT=1 NODE_ENV=development electron -r babel-register -r babel-polyfill ./src/main/index.js",
"start": "electron .",
"watch": "gulp watch"
},
"dependencies": {
"application-config": "^1.0.1",
"deep-diff": "^0.3.4",
"electron-context-menu": "^0.8.0",
"electron-debug": "^1.1.0",
"electron-window-state": "^4.1.0",
"gmusic.js": "^6.1.0",
"lodash.throttle": "^4.1.1",
"node-notifier": "^5.1.2",
"osx-mouse": "^1.2.1",
"rc-slider": "^6.3.1",
"react": "^15.4.2",
"react-desktop": "^0.2.19",
"react-dom": "^15.4.2",
"react-electron-web-view": "^2.0.1",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-actions": "^2.0.1",
"redux-electron-store": "^0.4.1",
"redux-logger": "^3.0.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"source-map-support": "^0.4.14",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-flow-runtime": "^0.10.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-classes": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"babili-webpack-plugin": "^0.0.11",
"chalk": "^1.1.3",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"devtron": "^1.4.0",
"electron": "^1.6.2",
"electron-builder": "^16.7.1",
"electron-devtools-installer": "^2.1.0",
"electron-rebuild": "^1.5.7",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2 || ^4.0.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.1.0",
"flow-bin": "^0.42.0",
"flow-runtime": "^0.10.0",
"flow-typed": "^2.0.0",
"gulp": "^3.9.1",
"gulp-decompress": "^2.0.1",
"gulp-remote-src": "^0.4.2",
"gulp-util": "^3.0.8",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"node-sass": "^4.5.2",
"npm-i": "^0.0.2",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"postcss-scss": "^0.4.1",
"precss": "^1.4.0",
"react-hot-loader": "3.0.0-beta.6",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"text-loader": "^0.0.1",
"uglify-js": "^2.8.21",
"uglifyjs-webpack-plugin": "^0.4.0",
"vinyl-map": "^1.0.2",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.5.4"
}
}