-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
124 lines (124 loc) · 4.42 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
{
"name": "charon",
"version": "4.4.3",
"scripts": {
"ng": "ng",
"build": "npm run clean && npm-run-all --parallel build:charon build:scripts",
"build:prod": "npm run clean && npm-run-all --parallel build:charon:prod build:scripts:prod && npm run pack",
"build:prod:qa": "npm run clean && npm-run-all --parallel build:charon:prod build:scripts:prod:qa && npm run pack",
"build:charon": "ng build charon --configuration development",
"build:charon:prod": "ng build charon --configuration production",
"build:charon:stats": "ng build charon --stats-json",
"build:scripts": "webpack --config projects/scripts/webpack.config.dev.js",
"build:scripts:prod": "webpack --config projects/scripts/webpack.config.prod.js",
"build:scripts:prod:qa": "cross-env QA=true webpack --config projects/scripts/webpack.config.prod.js",
"generate-icons": "svg-generator",
"clean": "rimraf dist",
"lint": "ng lint",
"lint:staged": "lint-staged --relative",
"pack": "cd dist && bestzip ../charon_extension.zip *",
"pack_named": "cd dist && bestzip ../charon_$(date +'%Y%m%d-%H%M')_v$(node -p -e \"require('../package.json').version\")_$(echo $BROWSER).zip *",
"test": "ng test",
"watch": "npm run clean && npm-run-all --parallel watch:charon watch:scripts",
"watch:charon": "ng build charon --configuration development --watch --delete-output-path=false --sourceMap=false",
"watch:scripts": "webpack --config projects/scripts/webpack.config.dev.js -w",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.0",
"@angular/cdk": "^13.3.1",
"@angular/common": "^13.3.0",
"@angular/compiler": "^13.3.0",
"@angular/core": "^13.3.0",
"@angular/forms": "^13.3.0",
"@angular/material": "^13.3.1",
"@angular/platform-browser": "^13.3.0",
"@angular/platform-browser-dynamic": "^13.3.0",
"@angular/router": "^13.3.0",
"@ngneat/input-mask": "^5.2.0",
"@ngneat/reactive-forms": "^4.0.4",
"@ngneat/svg-icon": "^4.1.0",
"@ngneat/transloco": "^4.0.0",
"@ngneat/until-destroy": "^9.0.0",
"@rxweb/reactive-form-validators": "^2.1.6",
"clamp-js": "^0.7.0",
"crypto-js": "^4.1.1",
"d3": "~7.3.0",
"decentr-js": "^5.2.4",
"highcharts": "^10.0.0",
"highcharts-angular": "^3.0.0",
"html2canvas": "~1.4.1",
"inputmask": "^5.0.7",
"jspdf": "^2.5.1",
"long": "^4.0.0",
"ng-qrcode": "^6.0.0",
"ngx-skeleton-loader": "^5.0.0",
"ngx-toastr": "^14.2.3",
"ngx-trim-directive": "^2.0.0",
"p-queue": "^7.2.0",
"rxjs": "~7.5.5",
"tslib": "^2.3.1",
"webextension-polyfill": "^0.9.0",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.0",
"@angular-eslint/builder": "^13.2.0",
"@angular-eslint/eslint-plugin": "^13.2.0",
"@angular-eslint/eslint-plugin-template": "^13.2.0",
"@angular-eslint/schematics": "^13.2.0",
"@angular-eslint/template-parser": "^13.2.0",
"@angular/cli": "^13.3.0",
"@angular/compiler-cli": "^13.3.0",
"@ngneat/svg-generator": "^4.0.0",
"@types/crypto-js": "^4.1.1",
"@types/d3": "^7.1.0",
"@types/google.analytics": "^0.0.42",
"@types/inputmask": "^5.0.3",
"@types/jasmine": "^4.0.2",
"@types/long": "^4.0.2",
"@types/node": "^14.18.21",
"@types/resize-observer-browser": "~0.1.7",
"@types/webextension-polyfill": "~0.9.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"bestzip": "^2.1.7",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jasmine-core": "^4.0.1",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"lint-staged": "^13.0.2",
"npm-run-all": "^4.1.5",
"ts-loader": "^9.2.8",
"typescript": "~4.6.3",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"svgGenerator": {
"outputPath": "./shared/svg-icons",
"postfix": "",
"prefix": "svg",
"srcPath": "./assets/svg",
"svgoConfig": {
"plugins": [
"cleanupAttrs",
"removeDimensions"
]
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint"
]
}
}