-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 3.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
107
108
{
"name": "monux",
"productName": "Monux",
"version": "0.10.0",
"description": "Secure desktop client for managing your Monzo current account",
"private": true,
"main": "./dist/app.js",
"repository": "https://github.com/robjtede/monux",
"author": "robjtede",
"license": "MIT",
"scripts": {
"start": "npm run build:dev:webpack -- --watch",
"electron:dev": "electron ./dist/app.js",
"electron:serve": "npm run build:electron && npm run electron:dev",
"build:dev": "npm run build:dev:webpack && npm run build:electron",
"build:dev:webpack": "webpack --mode development",
"build": "cross-env NODE_ENV=production npm run build:webpack && npm run build:electron",
"build:webpack": "webpack --mode production",
"build:electron": "tsc ./src/app.ts --outDir ./dist --target es2015 --module commonjs --skipLibCheck",
"build:mac": "npm run build && electron-builder --mac",
"build:windows": "npm run build && electron-builder --win",
"build:linux": "npm run build && electron-builder --linux",
"build:all": "npm run build && electron-builder -mw",
"precommit": "lint-staged",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@angular/animations": "^8.1.1",
"@angular/cdk": "^8.0.2",
"@angular/common": "^8.1.1",
"@angular/compiler": "^8.1.1",
"@angular/core": "^8.1.1",
"@angular/platform-browser": "^8.1.1",
"@angular/platform-browser-dynamic": "^8.1.1",
"@angular/router": "^8.1.1",
"@fortawesome/angular-fontawesome": "^0.4.0",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@ngrx/effects": "^8.1.0",
"@ngrx/router-store": "^8.1.0",
"@ngrx/store": "^8.1.0",
"@ngrx/store-devtools": "^8.1.0",
"@swimlane/ngx-charts": "^12.0.1",
"common-tags": "^1.8.0",
"core-js": "^3.1.4",
"d3": "^5.9.7",
"date-fns": "^2.0.0-alpha.16",
"debug": "^4.3.1",
"dexie": "^2.0.4",
"electron-contextmenu-middleware": "^1.0.3",
"electron-exif-rotate": "^0.2.1",
"electron-image-menu": "^2.0.0",
"electron-window-state": "^5.0.3",
"keytar": "^4.11.0",
"lodash": "^4.17.21",
"monzolib": "^0.1.0",
"p-iteration": "^1.1.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"rxjs-compat": "^6.5.2",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular/cli": "^18.2.6",
"@angular/compiler-cli": "^18.2.6",
"@ngtools/webpack": "^8.3.29",
"@types/common-tags": "^1.8.0",
"@types/d3": "^5.7.2",
"@types/debug": "^4.1.4",
"@types/electron-config": "^3.2.2",
"@types/electron-devtools-installer": "^2.2.0",
"@types/electron-window-state": "^2.0.33",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.2",
"@types/sharp": "^0.22.2",
"copy-webpack-plugin": "^5.0.3",
"copyfiles": "^2.1.1",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"devtron": "^1.4.0",
"eclint": "^2.8.1",
"electron": "^22.3.25",
"electron-builder": "^24.13.3",
"electron-devtools-installer": "^2.2.4",
"electron-reload": "^1.5.0",
"file-loader": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.5.0",
"husky": "^3.0.0",
"json-types": "^1.0.0",
"lint-staged": "^9.2.0",
"mini-css-extract-plugin": "^0.7.0",
"postcss": "^8.4.31",
"postcss-color-gray": "^5.0.0",
"postcss-easing-gradients": "^3.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"to-string-loader": "^1.2.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}