This repository has been archived by the owner on May 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
119 lines (119 loc) · 4.04 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
{
"name": "ctemplar",
"version": "2.5.79",
"license": "Apache",
"main": "electron-main.js",
"description": "Angular webclient (with Linux, macOS and Windows desktop clients) for CTemplar's encrypted email service.",
"author": {
"name": "Templar Software Systems Ltd.",
"email": "support@ctemplar.com"
},
"scripts": {
"prepare": "husky install",
"build:dev:electron": "tsc -p electron-tsconfig.json && ng build --subresource-integrity --base-href ./",
"build:dev": "ng build --output-hashing all --subresource-integrity",
"build:electron": "tsc -p electron-tsconfig.json && ng build --prod --subresource-integrity --base-href ./",
"build:ipfs": "ng build --prod --subresource-integrity --base-href ./",
"build": "ng build --prod --subresource-integrity",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"format": "prettier --write --ignore-unknown src",
"pack:electron": "electron-builder build",
"postinstall": "node patch-webpack.js",
"start:electron": "electron .",
"start:electron:win": ".\\\\node_modules\\\\electron\\\\dist\\\\electron.exe .",
"start:local:ssl": "ng serve -c local --ssl",
"start:local": "ng serve -c local",
"start": "ng serve"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.2.14",
"@angular/cdk": "^11.2.13",
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/core": "^11.2.14",
"@angular/forms": "^11.2.14",
"@angular/localize": "^11.2.14",
"@angular/material": "^11.2.13",
"@angular/platform-browser": "^11.2.14",
"@angular/platform-browser-dynamic": "^11.2.14",
"@angular/router": "^11.2.14",
"@ckeditor/ckeditor5-angular": "^2.0.1",
"@electron/remote": "^1.1.0",
"@ng-bootstrap/ng-bootstrap": "^9.1.3",
"@ngneat/until-destroy": "^8.1.1",
"@ngrx/effects": "^10.1.2",
"@ngrx/router-store": "^10.1.2",
"@ngrx/store": "^10.1.2",
"@ngrx/store-devtools": "^10.1.2",
"@ngx-matomo/router": "^1.3.5",
"@ngx-matomo/tracker": "^1.3.5",
"@ngx-translate/core": "^12.1.2",
"@ngx-translate/http-loader": "^4.0.0",
"@sentry/browser": "^6.17.2",
"angular2-cookie-law": "^7.0.1",
"bcryptjs": "^2.4.3",
"electron-context-menu": "^3.1.0",
"electron-updater": "^4.3.4",
"electron-window-state": "^5.0.3",
"email-addresses": "^3.1.0",
"juice": "^7.0.0",
"mimemessage": "^1.0.5",
"moment-timezone": "^0.5.27",
"ngx-chips": "^2.1.0",
"ngx-mask": "^12.0.0",
"node-notifier": "^9.0.1",
"openpgp": "4.10.4",
"postal-mime": "^1.0.12",
"rxjs": "^6.6.3",
"simple-keyboard": "^2.30.9",
"tslib": "^2.0.0",
"xss": "^1.0.8",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-builders/dev-server": "^7.3.1",
"@angular-devkit/build-angular": "^0.1102.18",
"@angular/cli": "^11.2.18",
"@angular/compiler-cli": "^11.2.14",
"@ckeditor/ckeditor5-inspector": "^2.2.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"electron": "^13.6.6",
"electron-builder": "^22.10.5",
"electron-reload": "1.5.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^33.0.1",
"husky": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.5.4",
"prettier": "^2.1.1",
"protractor": "~7.0.0",
"ts-node": "^8.10.2",
"typescript": "~4.0.7"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"**/*.{html,scss}": [
"prettier --write"
]
}
}