-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 2.75 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
103
104
105
106
{
"name": "cdm-bridge",
"productName": "CDM Bridge",
"description": "A open source Electron-based CONTENTdm migration tool.",
"author": {
"name": "Sean Watkins",
"email": "[email protected]"
},
"homepage": "https://bridge2hyku.github.io/",
"version": "1.1.0",
"license": "Apache-2.0",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"pack": "yarn compile && electron-builder --dir"
},
"build": {
"productName": "CDM Bridge",
"appId": "edu.uh.lib.CdmBridge",
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"deb",
"AppImage"
]
},
"directories": {
"buildResources": "resources",
"output": "release"
}
},
"dependencies": {
"@fortawesome/fontawesome-free": "~5.1.0",
"@fortawesome/fontawesome-svg-core": "~1.2.0-14",
"@fortawesome/free-solid-svg-icons": "~5.1.0-11",
"@fortawesome/react-fontawesome": "0.1.9",
"classnames": "^2.2.6",
"csv": "^3.1.0",
"electron-window-state": "^4.1.1",
"event-kit": "^2.5.3",
"file-url": "^2.0.2",
"filesize": "^3.6.1",
"fs-extra": "^8.0.1",
"mkdirp": "^0.5.1",
"react": "~16.7.0",
"react-dom": "~16.7.0",
"react-transition-group": "^1.2.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"source-map-support": "^0.5.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.52",
"@babel/preset-env": "^7.0.0-beta.52",
"@babel/preset-react": "^7.0.0-beta.51",
"@types/classnames": "^2.2.4",
"@types/csv-stringify": "^1.4.2",
"@types/event-kit": "^2.4.0",
"@types/file-url": "^2.0.0",
"@types/filesize": "^3.6.0",
"@types/fs-extra": "^8.0.1",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.12.6",
"@types/react": "~16.4.1",
"@types/react-dom": "~16.0.6",
"@types/react-transition-group": "1.1.1",
"@types/request": "^2.47.1",
"@types/request-promise": "^4.1.42",
"@types/uuid": "^3.4.3",
"electron": "7.2.4",
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^3.0.0",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^3.1.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.3",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"webpack": "~4.42.1"
},
"resolutions": {
"webpack-sources": "1.4.3",
"@types/react": "~16.4.1"
}
}