This repository was archived by the owner on Dec 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.29 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
{
"name": "audioteka",
"version": "1.0.0",
"description": "",
"main": "app.asar/app.js",
"scripts": {
"test": "mocha test",
"dev": "node_modules/.bin/webpack && asar pack ./src app.asar && ./node_modules/.bin/electron .",
"start": "./node_modules/.bin/electron .",
"build": "node_modules/.bin/electron-rebuild",
"dmg": "node_modules/.bin/electron-packager ./ Audioteka --platform=darwin --arch=x64 --out ./builds --ignore='/src|ui|webpack.config.js|build.(sh|bat)|data' --overwrite",
"pack-linux-ia32": "node_modules/.bin/electron-packager ./ Audioteka --platform=linux --arch=ia32 --out ./builds --ignore='/src|ui|webpack.config.js|shots|data' --overwrite",
"pack-linux-x64": "node_modules/.bin/electron-packager ./ Audioteka --platform=linux --arch=x64 --out ./builds --ignore='/src|ui|webpack.config.js|shots|data' --overwrite",
"pack-win-ia32": "node_modules/.bin/electron-packager ./ Audioteka --platform=win32 --arch=ia32 --out ./builds --ignore='/src|ui|webpack.config.js|shots|data' --overwrite",
"pack-win-x64": "node_modules/.bin/electron-packager ./ Audioteka --platform=win32 --arch=x64 --out ./builds --ignore='/src|ui|webpack.config.js|shots|data' --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Spring3/Audioteka.git"
},
"author": "Daniyil Vasylenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/Spring3/Audioteka/issues"
},
"homepage": "https://github.com/Spring3/Audioteka#readme",
"dependencies": {
"electron": "^1.6.2",
"electron-context-menu": "^0.9.0",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-transition-group": "^15.4.2",
"react-addons-update": "^15.5.2",
"react-data-grid": "^2.0.30",
"react-data-grid-addons": "^2.0.34",
"react-dom": "^15.4.2",
"react-notifications": "^1.3.0",
"react-router": "^3.0.2",
"reactstrap": "^4.2.0",
"sqlite": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.23.0",
"electron-packager": "^8.5.2",
"electron-rebuild": "^1.5.7",
"json-loader": "^0.5.4",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}