-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.71 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
{
"name": "collections-viewer-electron-app",
"productName": "collections-viewer-electron-app",
"version": "1.1.0",
"description": "Touchscreen application built in electron, used to access and display online collections.",
"main": "src/index.js",
"scripts": {
"debug": "set DEBUG=electron-compile:*,-babel && npm run start",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint src/**/*.js"
},
"keywords": [],
"author": "Michael Mason <mmason@museum.vic.gov.au>",
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"packageManager": "yarn",
"afterExtract": [
"./build/afterExtract.js"
]
},
"electronWinstallerConfig": {
"name": "collections_viewer_electron_app"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "",
"name": ""
},
"windowsStoreConfig": {
"packageName": "",
"name": "collectionsviewerelectronapp"
}
}
},
"dependencies": {
"classnames": "^2.2.5",
"electron-compile": "^6.4.2",
"electron-devtools-installer": "^2.1.0",
"electron-localshortcut": "^2.0.2",
"electron-squirrel-startup": "^1.0.0",
"fetch-retry": "^2.0.0",
"imagesloaded": "^4.1.3",
"isotope-layout": "^3.0.4",
"nl2br": "^0.0.3",
"parse-link-header": "^1.0.1",
"prop-types": "^15.6.0",
"react": "^15.4.1",
"react-autobind": "^1.0.6",
"react-body-classname": "^1.2.0",
"react-dom": "^15.4.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-idle-timer": "^2.0.0",
"react-redux": "^5.0.6",
"react-transition-group": "^2.2.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.15.6",
"scroll-into-view": "https://github.com/michael-mason/scroll-into-view.git"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"electron-forge": "^4.1.2",
"electron-prebuilt-compile": "1.7.8",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0"
}
}