-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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
{
"name": "ethereum-event-scan",
"private": true,
"version": "3.0.0",
"description": "Lightweight ethereum event explorer for smart contracts",
"main": "src/server.js",
"repository": {
"type": "git",
"url": "https://github.com/MarkusSprunck/ethereum-event-scan.git"
},
"scripts": {
"ng": "ng",
"start": "ng serve --port 55226",
"build": "ng build --configuration production --aot",
"test": "ng test --watch=false --browsers=ChromeHeadless",
"lint": "ng lint"
},
"optionalDependencies": {
"fsevents": "*"
},
"dependencies": {
"@angular/animations": "^16.1.5",
"@angular/cdk": "16.1.4",
"@angular/common": "^16.1.5",
"@angular/compiler": "^16.1.5",
"@angular/core": "^16.1.5",
"@angular/forms": "^16.1.5",
"@angular/material": "16.1.4",
"@angular/platform-browser": "^16.1.5",
"@angular/platform-browser-dynamic": "^16.1.5",
"@angular/router": "^16.1.5",
"assert": "^2.1.0",
"bignumber.js": "^9.0.0",
"blockies": "^0.0.2",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"css-select": "^5.1.0",
"json-stringify-pretty-compact": "^2.0.0",
"pako": "^1.0.11",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rxjs": "~7.5.0",
"stream": "^0.0.2",
"stream-http": "^3.2.0",
"tslib": "^2.3.0",
"web3": "1.9.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.4",
"@angular-eslint/builder": "^16.1.0",
"@angular-eslint/eslint-plugin": "^16.1.0",
"@angular-eslint/eslint-plugin-template": "^16.1.0",
"@angular-eslint/schematics": "^16.1.0",
"@angular-eslint/template-parser": "^16.1.0",
"@angular/cli": "~16.1.4",
"@angular/compiler-cli": "^16.1.5",
"@types/jasmine": "~4.3.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~4.9.3"
}
}