-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
112 lines (112 loc) · 4.03 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
{
"name": "tezedge-explorer",
"version": "1.14.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:mock": "npm run mock:http & npm run mock:debugger & npm run start",
"start:sandbox": "ng serve --configuration production --port 80 --host sandbox.dev.tezedge.com",
"build": "node --max_old_space_size=8192 ./node_modules/@angular/cli/bin/ng build",
"build:prod": "node --max_old_space_size=8192 ./node_modules/@angular/cli/bin/ng build --configuration production",
"build:docker": "node --max_old_space_size=8192 ./node_modules/@angular/cli/bin/ng build --configuration=docker",
"build:stats": "ng build --configuration production --stats-json",
"analyze": "webpack-bundle-analyzer dist/tezedge-explorer/stats.json",
"generate-icons": "svg-sprite -cD src/assets/sprite src/assets/icons/*.svg",
"mock:http": "json-server --watch mock/http/db.json --port 3001 --routes mock/http/routes.json",
"mock:debugger": "json-server --watch mock/debugger/db.json --port 3002 --routes mock/debugger/routes.json",
"test": "npx cypress run --headless",
"test:open": "npx cypress open",
"deploy": "firebase deploy"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.11",
"@angular/cdk": "^13.3.0",
"@angular/common": "^13.3.11",
"@angular/compiler": "^13.3.11",
"@angular/core": "^13.3.11",
"@angular/flex-layout": "^13.0.0-beta.38",
"@angular/forms": "^13.3.11",
"@angular/material": "^13.3.0",
"@angular/platform-browser": "^13.3.11",
"@angular/platform-browser-dynamic": "^13.3.11",
"@angular/router": "^13.3.11",
"@angular/service-worker": "^13.3.11",
"@ledgerhq/hw-transport-u2f": "^5.19.0",
"@ledgerhq/hw-transport-webhid": "^5.51.1",
"@ledgerhq/hw-transport-webusb": "^6.27.1",
"@ngneat/until-destroy": "^9.2.0",
"@ngrx/effects": "^13.2.0",
"@ngrx/router-store": "^13.2.0",
"@ngrx/schematics": "^13.2.0",
"@ngrx/store": "^13.2.0",
"@ngrx/store-devtools": "^13.2.0",
"@observablehq/runtime": "^4.8.2",
"@obsidiansystems/hw-app-xtz": "^4.72.3",
"@swimlane/ngx-charts": "^16.0.0",
"@taquito/ledger-signer": "^12.1.0",
"@taquito/local-forging": "^12.1.1",
"@taquito/michel-codec": "^11.2.0",
"@taquito/taquito": "^12.1.0",
"angular-notifier": "^11.0.0",
"babel-polyfill": "^6.26.0",
"bs58check": "^2.1.2",
"crypto": "^1.0.1",
"d3": "^7.1.1",
"d3-shape": "^2.1.0",
"dagre-d3": "^0.6.4",
"ledgers.js": "^1.0.10",
"memo-decorator": "2.0.1",
"moment-mini-ts": "2.20.1",
"monaco-editor": "0.24.0",
"ngx-json-viewer": "3.0.2",
"ngx-monaco-editor": "12.0.0",
"ngx-object-diff": "0.0.3",
"process": "0.11.10",
"rxjs": "7.5.5",
"stream": "0.0.2",
"stream-browserify": "3.0.0",
"swagger-ui-dist": "^3.51.0",
"tezos-wallet": "2.0.0",
"tslib": "^2.0.0",
"typescript-debounce-decorator": "^0.0.18",
"webpack": "5.72.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^13.1.0",
"@angular-devkit/build-angular": "^13.3.8",
"@angular/cli": "^13.3.8",
"@angular/compiler-cli": "^13.3.11",
"@angular/language-service": "^13.3.11",
"@playwright/test": "^1.16.3",
"@types/d3": "^6.3.0",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^12.20.54",
"@types/w3c-web-usb": "^1.0.6",
"angular-http-server": "^1.10.0",
"codelyzer": "^6.0.0",
"cypress": "^9.5.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"json-server": "^0.17.0",
"karma": "~6.3.2",
"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",
"protractor": "~7.0.0",
"start-server-and-test": "^1.12.1",
"svg-sprite": "~1.5.3",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"typescript": "~4.6.4",
"webpack-bundle-analyzer": "^3.6.1"
},
"browser": {
"fs": false,
"os": false,
"path": false
}
}