-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
92 lines (92 loc) · 2.97 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
{
"name": "raiden-webui",
"version": "1.2.1",
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow yarn",
"ng": "ng",
"start": "yarn run serve",
"serve": "ng serve --proxy-config proxy.config.json",
"serve:all": "ng serve --proxy-config proxy.config.json --host 0.0.0.0",
"build": "yarn run build:prod",
"build:dev": "ng build",
"build:prod": "ng build --configuration production --aot",
"test": "ng test",
"lint": "ng lint raidenwebui",
"prettier": "prettier --write --config ./.prettierrc './**/*.{ts,tsx,html,css,scss,json,js}'",
"prettier:check": "prettier --check --config ./.prettierrc './**/*.{ts,tsx,html,css,scss,json,js}'",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "12.1.4",
"@angular/cdk": "12.1.4",
"@angular/common": "12.1.4",
"@angular/compiler": "12.1.4",
"@angular/core": "12.1.4",
"@angular/flex-layout": "12.0.0-beta.34",
"@angular/forms": "12.1.4",
"@angular/material": "12.1.4",
"@angular/platform-browser": "12.1.4",
"@angular/platform-browser-dynamic": "12.1.4",
"@angular/router": "12.1.4",
"@metamask/detect-provider": "^1.2.0",
"ajv": "8.6.2",
"assert": "2.0.0",
"bignumber.js": "9.0.1",
"buffer": "6.0.3",
"core-js": "3.16.0",
"crypto-browserify": "3.12.0",
"ethereum-blockies-base64": "1.0.2",
"https-browserify": "1.0.0",
"jasmine": "3.8.0",
"material-design-icons": "3.0.1",
"ngx-clipboard": "14.0.1",
"ngx-toastr": "14.0.0",
"os-browserify": "0.3.0",
"process": "0.11.10",
"qrcode": "1.4.4",
"rxjs": "6.6.7",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"tslib": "2.3.0",
"web3": "1.5.0",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "12.1.0",
"@angular-devkit/build-angular": "12.1.4",
"@angular-eslint/builder": "12.3.1",
"@angular-eslint/eslint-plugin": "12.3.1",
"@angular-eslint/eslint-plugin-template": "12.3.1",
"@angular-eslint/schematics": "12.3.1",
"@angular-eslint/template-parser": "12.3.1",
"@angular/cli": "12.1.4",
"@angular/compiler-cli": "12.1.4",
"@angular/language-service": "12.1.4",
"@types/jasmine": "3.8.2",
"@types/jasminewd2": "2.0.10",
"@types/node": "14.17.7",
"@types/qrcode": "1.4.1",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"eslint": "7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsdoc": "31.6.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "3.8.0",
"jasmine-spec-reporter": "6.0.0",
"karma": "6.3.4",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage": "2.0.3",
"karma-jasmine": "4.0.1",
"karma-junit-reporter": "2.0.1",
"prettier": "2.3.2",
"protractor": "7.0.0",
"sass": "1.37.0",
"ts-node": "9.1.1",
"typescript": "4.3.5"
}
}