This repository has been archived by the owner on May 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.04 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
{
"name": "servizi",
"version": "1.0.0",
"description": "Music player",
"main": "main.js",
"productName": "Servizi",
"author": "Adam Tootle",
"license": "Apache License 2.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack-server": "webpack-dev-server --config webpack.config.js",
"webpack-build": "webpack --config webpack.config.js",
"run-dev": "electron .",
"build-prod-mac": "npm run webpack-build && build --dir --mac",
"build-prod-win": "npm run webpack-build && build --dir --win",
"release-prod": "npm run webpack-build && build --publish=always --win --mac"
},
"build": {
"appId": "com.adamtootle.servizi",
"copyright": "Copyright © 2017 Adam Tootle\n\nServizi is not affiliated with Planning Center or Ministry Centered Technologies, Inc.",
"protocols": {
"name": "servizi",
"schemes": [
"servizi"
]
},
"mac": {
"category": "public.app-category.music"
},
"win": {
"target": "nsis"
},
"publish": {
"provider": "s3",
"bucket": "servizi",
"path": "releases"
}
},
"dependencies": {
"aws-sdk": "^2.78.0",
"aws-sdk-mobile-analytics": "^0.9.2",
"bluebird": "^3.4.1",
"crypto-js": "^3.1.9-1",
"electron-log": "^2.2.6",
"electron-settings": "^2.2.2",
"electron-updater": "^2.1.2",
"eventemitter3": "^2.0.2",
"format-duration": "^1.0.0",
"json-loader": "^0.5.4",
"keytar": "^4.0.3",
"lodash": "^4.13.1",
"material-ui": "^0.16.4",
"nedb": "^1.8.0",
"pco-js": "github:adamtootle/pco-js",
"prop-types": "^15.5.10",
"react": "^15.4.0",
"react-addons-css-transition-group": "^15.1.0",
"react-dom": "^15.4.0",
"react-fontawesome": "^1.1.0",
"react-media-player": "^0.6.0",
"react-player": "^0.12.1",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "2.0.1",
"redux": "^3.6.0",
"redux-electron-store": "^0.4.1",
"redux-thunk": "^2.2.0",
"request-promise": "4.2.1",
"scroll-into-view": "^1.7.1",
"scroll-into-view-if-needed": "^1.0.6",
"simple-oauth2": "^1.0.1",
"string": "^3.3.3"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"concurrently": "^2.1.0",
"css-loader": "^0.26.1",
"electron": "^1.6.10",
"electron-builder": "19.11.1",
"electron-publisher-s3": "^18.6.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"expose-loader": "^0.7.1",
"image-webpack-loader": "^3.1.0",
"node-sass": "^4.1.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "2.6.1",
"webpack-dev-server": "2.4.5"
}
}