-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
68 lines (68 loc) · 2.19 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
{
"name": "Destroyer",
"version": "2.0.1",
"description": "Lossless Audio Player",
"main": "index.js",
"private": true,
"scripts": {
"clean": "rm -r bundle || true",
"prebuild": "yarn run clean",
"build": "NODE_ENV=development webpack --progress",
"build:watch": "yarn run build -- --watch",
"start": "electron index.js",
"pack:osx":
"rm -rf Destroyer-darwin-x64 && NODE_ENV=production webpack --progress -p && electron-packager ./ Destroyer --platform=darwin --arch=x64 --icon=icons.icns --prune",
"pack:win":
"NODE_ENV=production webpack --progress -p && electron-packager ./ Destroyer --out=dist/windows --platform=win32 --arch=x64 --overwrite --icon=icons.ico --prune"
},
"author": "omar mashaal",
"license": "ISC",
"dependencies": {
"date-fns": "^1.28.2",
"electron": "^1.6.5",
"electron-window-state": "^4.1.0",
"fuzzy-search": "^1.4.0",
"in-view": "^0.6.1",
"key": "^0.1.11",
"leftpad": "0.0.0",
"musicmetadata": "^2.0.5",
"radium": "^0.18.2",
"react": "^15.4.2",
"react-addons-shallow-compare": "^15.4.2",
"react-dom": "^15.4.2",
"redux": "^3.6.0",
"scroll-animator": "^1.1.0",
"walk": "^2.3.9"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"electron-packager": "^8.6.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^7.1.0",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.1.1",
"exports-loader": "^0.6.4",
"file-loader": "^0.11.0",
"imports-loader": "^0.7.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.2"
},
"babel": {
"presets": ["es2015", "stage-0", "react"],
"plugins": ["transform-runtime", "transform-decorators-legacy"]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": ["standard", "standard-react"]
}
}