-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
111 lines (111 loc) · 3.37 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
{
"name": "identity",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4201 -c development",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build_prod": "./node_modules/.bin/ng build --configuration production --base-href / --deploy-url /",
"ngcc": "./node_modules/.bin/ngcc --properties es2015",
"format": "npx prettier --write src",
"prepare": "husky install",
"pre-commit": "tsc --noEmit && pretty-quick --staged",
"quality-check": "tsc --noEmit && npx prettier --check src"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.3",
"@angular/cdk": "^16.1.3",
"@angular/common": "^16.1.3",
"@angular/compiler": "^16.1.3",
"@angular/core": "^16.1.3",
"@angular/forms": "^16.1.3",
"@angular/material": "^16.1.3",
"@angular/platform-browser": "^16.1.3",
"@angular/platform-browser-dynamic": "^16.1.3",
"@angular/router": "^16.1.3",
"@ethereumjs/common": "^2.6.4",
"@ethereumjs/tx": "^3.5.1",
"@ethereumjs/vm": "^5.9.0",
"@metamask/post-message-stream": "^6.1.2",
"@metamask/providers": "^11.1.1",
"@types/lodash": "^4.14.182",
"@types/sha256": "^0.2.0",
"@types/sprintf-js": "^1.1.2",
"@walletconnect/ethereum-provider": "^2.9.2",
"@walletconnect/modal": "^2.6.1",
"angular-feather": "^6.5.0",
"assert": "^2.0.0",
"base58check": "^2.0.0",
"base64-js": "^1.5.1",
"bip39": "^3.0.3",
"crypto-browserify": "^3.12.0",
"currency-symbol-map": "^5.0.1",
"elliptic": "^6.5.4",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.6.9",
"feather-icons": "^4.29.0",
"hdkey": "github:deso-protocol/hdkey",
"intl-tel-input": "^18.1.7",
"jsonwebtoken": "^8.5.1",
"key-encoder": "^2.0.3",
"lodash": "^4.17.21",
"ng-hcaptcha": "^2.2.0",
"ngx-cookie": "^6.0.1",
"process": "^0.11.10",
"readable-stream": "^3.6.0",
"reflect-metadata": "^0.1.13",
"rxjs": "~6.6.0",
"sha256": "^0.2.0",
"sha3": "^2.1.4",
"sprintf-js": "^1.1.2",
"sweetalert2": "^11.4.10",
"tslib": "^2.0.0",
"util": "^0.12.4",
"uuid": "^3.4.0",
"web3-utils": "^1.7.3",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^16.0.0",
"@angular-devkit/build-angular": "^16.1.3",
"@angular/cli": "^16.1.3",
"@angular/compiler-cli": "^16.1.3",
"@types/bip39": "^3.0.0",
"@types/bs58check": "^2.1.0",
"@types/elliptic": "^6.4.12",
"@types/google-libphonenumber": "^7.4.23",
"@types/hdkey": "^0.7.1",
"@types/intl-tel-input": "^18.1.0",
"@types/jasmine": "~3.8.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^12.11.1",
"@types/readable-stream": "^2.3.14",
"@types/reflect-metadata": "^0.1.0",
"@types/uuid": "^8.3.0",
"audit-ci": "^4.0.0",
"codelyzer": "^6.0.0",
"husky": "^8.0.3",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~5.1.6"
},
"volta": {
"node": "16.19.0",
"npm": "7.24.2"
}
}