This repository was archived by the owner on Jun 10, 2026. It is now read-only.
forked from morsdyce/react-next-soundnode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.93 KB
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
{
"name": "Soundnode",
"version": "7.0.0",
"main": "main.js",
"description": "Soundnode App is the Soundcloud for desktop",
"repository": {
"type": "git",
"url": "git://github.com/Soundnode/soundnode-app.git"
},
"scripts": {
"start": "./node_modules/.bin/electron .",
"release": "npm run clean && npm run webpack:prod && npm run package:all",
"clean": "./node_modules/.bin/rimraf ./dist",
"webpack:prod": "./node_modules/.bin/webpack -p --config ./webpack.prod.js",
"webpack:dev": "./node_modules/.bin/webpack -d --watch --config ./webpack.dev.js",
"package:osx": "electron-packager ./ Soundnode --platform=darwin --out ./dist/Soundnode --electron-version 1.4.4 --overwrite --icon ./app/soundnode.ico",
"package:linux": "electron-packager ./ Soundnode --platform=linux --out ./dist/Soundnode --electron-version 1.4.4 --overwrite --icon ./app/soundnode.icns",
"package:win32": "electron-packager ./ Soundnode --platform=win32 --out ./dist/Soundnode --electron-version 1.4.4 --overwrite --icon ./app/soundnode.icns",
"package:all": "npm run package:osx && npm run package:linux && npm run package:win32"
},
"author": "Michael Lancaster",
"license": "GPL-3.0",
"devDependencies": {
"babel-core": "6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"electron": "^1.6.11",
"electron-packager": "^8.5.1",
"eslint": "^4.0.0",
"eslint-plugin-react": "^7.1.0",
"install": "^0.10.1",
"node-sass": "^4.5.0",
"prettier": "^1.14.3",
"rimraf": "^2.5.4",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"angular": "^1.6.2",
"angular-hotkeys": "^1.7.0",
"angular-sanitize": "^1.6.2",
"angular-toastr": "^2.1.1",
"angular-ui-router": "^0.4.2",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"electron-window-state": "^4.0.2",
"font-awesome": "^4.7.0",
"fs-extra": "^3.0.1",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"mobx": "^5.5.2",
"mobx-react": "^5.3.6",
"moment": "^2.17.1",
"ng-dialog": "^1.0.0",
"ng-infinite-scroll": "^1.3.0",
"normalize.css": "^7.0.0",
"react": "^16.6.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.6.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-toastify": "^4.4.0",
"toastr": "^2.1.2",
"universal-analytics": "^0.4.8",
"user-home": "^2.0.0",
"uuid": "^3.3.2"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"requirePragma": false
}
}