forked from sprout2000/leafview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.85 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.85 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
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
{
"name": "leafview",
"productName": "LeafView",
"version": "0.3.11",
"main": "dist/main.js",
"description": "Secure image viewer for minimalists based on leaflet.js",
"author": {
"name": "sprout2000",
"url": "https://github.com/sprout2000"
},
"homepage": "https://sprout2000.github.io/leafview/",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:sprout2000/leafview.git"
},
"bugs": {
"url": "https://github.com/sprout2000/leafview/issues"
},
"keywords": [
"image-viewer",
"electron",
"pan",
"zoom",
"cross-platform"
],
"engines": {
"node": "12.x"
},
"os": [
"win32",
"darwin"
],
"scripts": {
"start": "run-s clean build serve",
"serve": "electron .",
"clean": "rimraf dist release",
"build": "cross-env NODE_ENV=\"development\" webpack --progress",
"build:prod": "cross-env NODE_ENV=\"production\" webpack --progress",
"release": "node scripts/build.js",
"prepackage": "run-s clean build:prod",
"prepackage:appx": "run-s clean build:prod",
"package": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false node scripts/build-unsign.js",
"package:appx": "node scripts/build.js",
"deploy": "gh-pages -d public"
},
"dependencies": {
"electron-log": "^4.2.4",
"electron-updater": "^4.3.5",
"electron-window-state": "^5.0.3",
"i18next": "^19.7.0",
"leaflet": "^1.7.1",
"mime-types": "^2.1.27",
"natsort": "^2.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"ua-parser-js": "^0.7.22"
},
"devDependencies": {
"@types/electron-load-devtool": "^1.2.0",
"@types/leaflet": "^1.5.17",
"@types/mime-types": "^2.1.0",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/resize-observer-browser": "^0.1.3",
"@types/ua-parser-js": "^0.7.33",
"@types/webpack": "^4.41.22",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"dotenv": "^8.2.0",
"electron": "^8.5.2",
"electron-builder": "^22.8.1",
"electron-load-devtool": "^1.2.0",
"electron-notarize": "^1.0.0",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass-loader": "^10.0.2",
"terser-webpack-plugin": "^4.2.2",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"gh-pages": "^3.1.0",
"prettier": "^2.1.2"
}
}