-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
146 lines (146 loc) · 4.62 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "artiffact-control",
"version": "1.0.0",
"description": "ArTIFFact Control is a desktop application in which you can validate TIFF image files with information about cultural heritage collections.",
"main": "./webpack-config/dist/main.js",
"scripts": {
"build-main": "cross-env NODE_ENV=production webpack --config webpack-config/webpack.main.prod.config.js",
"build-renderer": "cross-env NODE_ENV=production webpack --config webpack-config/webpack.renderer.prod.config.js",
"build": "npm run build-main && npm run build-renderer && npm run release",
"start-renderer-dev": "webpack-dev-server --config webpack-config/webpack.renderer.dev.config.js",
"start-main-dev": "webpack --config webpack-config/webpack.main.config.js && electron ./webpack-config/dist/main.js",
"start-dev": "cross-env START_HOT=1 npm run start-renderer-dev",
"build-local": "npm run build-main && npm run build-renderer",
"build-all": "electron-builder --windows --linux --mac",
"build-windows": "electron-builder --windows",
"build-linux": "electron-builder --linux",
"build-mac": "electron-builder --mac",
"release": "electron-builder --windows --publish always"
},
"build": {
"productName": "ArTIFFact-Control",
"appId": "meemoo.osoc.artiffact-control",
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.utilities"
},
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"build/icon.*",
"webpack-config/dist/",
"node_modules/",
"package.json"
],
"linux": {
"target": "deb"
},
"win": {
"target": "nsis"
},
"extraFiles": [
{
"from": "./config",
"to": "config",
"filter": [
"**/*"
]
},
{
"from": "./reports",
"to": "reports",
"filter": [
"**/*"
]
}
]
},
"extraResources": [
"./src/renderer/assets/icons/*.svg",
"./src/renderer/assets/*/*.woff",
"./src/renderer/assets/*/*.ttf"
],
"repository": {
"type": "git",
"url": "git+git@github.com:oSoc20/ArTIFFact-Control.git"
},
"author": {
"name": "oSoc20",
"email": "none@none.none"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/oSoc20/ArTIFFact-Control/issues"
},
"homepage": "https://github.com/oSoc20/ArTIFFact-Control",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@hot-loader/react-dom": "^16.8.6",
"@types/electron-devtools-installer": "^2.2.0",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.0.9",
"@types/react-test-renderer": "^16.8.1",
"@types/webdriverio": "^4.8.7",
"@types/webpack-env": "^1.13.3",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-loader": "^8.0.6",
"cross-env": "^5.1.3",
"css-loader": "^2.1.1",
"electron": "^9.1.0",
"electron-builder": "^22.3.2",
"electron-devtools-installer": "^2.2.4",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"file-loader": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^1.3.4",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"node-sass": "^4.12.0",
"react-hot-loader": "^4.8.8",
"react-test-renderer": "^16.8.6",
"redux-devtools-extension": "^2.13.5",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"typescript": "^3.4.5",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/pickers": "^3.2.10",
"@types/chart.js": "^2.9.23",
"@types/react-router-dom": "^5.1.5",
"axios": "^0.19.2",
"chart.js": "^2.9.3",
"copy-webpack-plugin": "^6.0.3",
"date-fns": "^2.14.0",
"history": "^5.0.0",
"react": "^16.8.6",
"react-chartjs-2": "^2.9.0",
"react-dom": "^16.8.6",
"react-dropzone": "^11.0.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"xml-formatter": "^2.1.2"
}
}