-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
160 lines (160 loc) · 6.26 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "exif-map-visualizer",
"productName": "EXIF Map Visualizer",
"version": "1.6.1-BETA",
"description": "Display the locations where photos were taken on a map.",
"homepage": "https://example.com/",
"author": {
"name": "Utkarsh Parashar"
},
"main": "src-main/electron-main.js",
"private": true,
"config": {
"devOrProd": "Dev"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p ng:serve electron:serve",
"build": "npm run build:src-main && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"build:src-main": "tsc -p tsconfig.src-main.json",
"ng:serve": "ng serve -c production",
"electron:serve": "wait-on http-get://127.0.0.1:4200/ && npm run build:src-main && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron-builder:linux": "npm run build:prod && electron-builder build --linux",
"electron-builder:mac": "npm run build:prod && electron-builder build --mac",
"electron-builder:windows": "npm run build:prod && electron-builder build --windows",
"package:linux": "npm run electron-builder:linux -- --publish never",
"package:mac": "npm run electron-builder:mac -- --publish never",
"package:windows": "npm run electron-builder:windows -- --publish never",
"publish:linux": "npm run electron-builder:linux -- --publish always",
"publish:mac": "npm run electron-builder:mac -- --publish always",
"publish:windows": "npm run electron-builder:windows -- --publish always",
"notarize-history": "node script/notarize/get-notarization-history.js",
"lint:ng": "ng lint",
"lint:ng:fix": "ng lint --fix",
"lint:script": "eslint -c ./script/.eslintrc.script.js ./script/**/*.js",
"lint:script:fix": "npm run lint:script -- --fix",
"lint:all": "npm-run-all lint:ng lint:script",
"test:unit:ng": "ng test",
"test:unit:ng:watch": "ng test --watch",
"test:unit:ng:coverage": "ng test --code-coverage",
"test:unit:em:main": "cross-env TS_NODE_TRANSPILE_ONLY=1 TS_NODE_PROJECT='./test/em-main.tsconfig.json' PLM_EM_MAIN=true electron-mocha --config ./test/em-main.mocharc.js",
"test:unit:em:renderer": "cross-env TS_NODE_TRANSPILE_ONLY=1 TS_NODE_PROJECT='./test/em-renderer.tsconfig.json' PLM_EM_RENDERER=true electron-mocha --renderer --require-main ./test/em-renderer-require-in-main-process.js --window-config ./test/em-renderer-window-config.js --config ./test/em-renderer.mocharc.js",
"test:unit:em:both": "npm-run-all test:unit:em:main test:unit:em:renderer",
"test:unit:em:help": "electron-mocha --help",
"test:unit:all": "npm-run-all test:unit:ng test:unit:em:both",
"test:package": "cross-env PLM_PACKAGE_TEST=true node ./script/package-test/run-package-test.js",
"test:all": "npm-run-all lint:all test:unit:all test:package",
"check": "npm-check --skip-unused --save-exact --update"
},
"dependencies": {
"@electron/remote": "2.0.7",
"delete-empty": "3.0.0",
"directory-tree": "2.3.1",
"electron-unhandled": "4.0.1",
"electron-updater": "4.6.5",
"electron-window-state": "5.0.3",
"exifr": "7.1.3",
"fs-extra": "10.0.1",
"heic-decode": "1.1.2",
"is-natural-number": "4.0.1",
"is-number": "7.0.0",
"jimp": "0.16.2",
"jpeg-js": "^0.4.4",
"lodash": "4.17.21",
"moment-duration-format": "2.3.2",
"moment-timezone": "^0.5.40",
"nodejs-fs-utils": "1.2.6",
"physical-cpu-count": "2.0.0",
"prettysize": "2.0.0",
"promise.allsettled": "1.0.5",
"tiny-worker": "2.3.0",
"universal-analytics": "0.5.3",
"uuid": "8.3.2",
"workerpool": "6.3.1"
},
"devDependencies": {
"@amplitude/analytics-browser": "1.5.0",
"@angular-builders/custom-webpack": "13.1.0",
"@angular-devkit/build-angular": "^13.3.10",
"@angular-eslint/builder": "13.1.0",
"@angular-eslint/eslint-plugin": "13.1.0",
"@angular-eslint/eslint-plugin-template": "13.1.0",
"@angular-eslint/schematics": "13.1.0",
"@angular-eslint/template-parser": "13.1.0",
"@angular/animations": "13.2.6",
"@angular/cdk": "13.2.6",
"@angular/cli": "13.2.6",
"@angular/common": "13.2.6",
"@angular/compiler": "13.2.6",
"@angular/compiler-cli": "13.2.6",
"@angular/core": "13.2.6",
"@angular/forms": "13.2.6",
"@angular/language-service": "13.2.6",
"@angular/material": "13.2.6",
"@angular/platform-browser": "13.2.6",
"@angular/platform-browser-dynamic": "13.2.6",
"@angular/router": "13.2.6",
"@ngx-translate/core": "14.0.0",
"@ngx-translate/http-loader": "7.0.0",
"@types/delete-empty": "3.0.2",
"@types/fs-extra": "9.0.13",
"@types/is-natural-number": "4.0.1",
"@types/is-number": "7.0.3",
"@types/jasmine": "3.10.3",
"@types/leaflet": "1.7.9",
"@types/leaflet.markercluster": "1.4.6",
"@types/lodash": "4.14.191",
"@types/mixpanel-browser": "2.38.0",
"@types/moment-duration-format": "2.2.3",
"@types/node": "12.20.47",
"@types/promise.allsettled": "1.0.3",
"@types/universal-analytics": "0.4.5",
"@types/uuid": "8.3.4",
"@types/webpack": "5.28.0",
"@types/workerpool": "6.1.0",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"chai": "4.3.6",
"comlink": "4.3.1",
"cross-env": "7.0.3",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"electron-mocha": "11.0.2",
"electron-notarize": "1.1.1",
"electron-reload": "1.5.0",
"eslint": "8.10.0",
"espower-typescript": "10.0.0",
"exif-parser": "0.1.12",
"jasmine-core": "4.0.1",
"karma": "6.3.17",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "^7.3.0",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"karma-mocha-reporter": "2.2.5",
"leaflet-plugins": "3.4.0",
"mixpanel-browser": "2.45.0",
"ng-mocks": "13.1.0",
"npm-check": "^6.0.1",
"npm-run-all": "4.1.5",
"p-queue": "6.6.2",
"power-assert": "1.6.1",
"rxjs": "7.5.5",
"split.js": "1.6.5",
"tree-kill": "1.2.2",
"ts-node": "10.2.1",
"tslib": "2.3.1",
"typescript": "4.5.5",
"wait-on": "6.0.1",
"zone.js": "0.11.5"
},
"browser": {
"fs": false,
"net": false,
"tls": false
}
}