-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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
{
"name": "now-playing",
"productName": "Now Playing",
"version": "0.2.1",
"description": "A minimal Spotify Visualizer",
"main": "main.js",
"scripts": {
"start": "electron .",
"watch": "webpack-dev-server --mode development",
"build": "webpack",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=logo.png.icns --prune=true --out=release-builds --ignore=src/",
"create-installer-mac": "electron-installer-dmg ./release-builds/Now\\ Playing-darwin-x64/Now\\ Playing.app now-playing --out=releases --overwrite --icon=logo.png.icns"
},
"repository": "https://github.com/raulcodes/Now-Playing",
"keywords": [
"Electron",
"Spotify"
],
"author": "Raul Camacho",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"electron": "^3.0.4",
"file-loader": "^2.0.0",
"lodash": ">=4.17.13",
"node-sass": "^4.11.0",
"node-vibrant": "^3.0.0",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"sass-loader": "^7.1.0",
"spotify-node-applescript": "^1.1.1",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {}
}