-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.5 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
{
"name": "@b-ee/web3-connect",
"version": "1.0.0",
"description": "Easy way to connect users to Decentralized Applications.",
"author": "Dmytro Zeleniuk",
"engines": {
"node": ">=16.10.0",
"yarn": ">=1.15.2 <2.0.0"
},
"scripts": {
"install:lib": "cd src && yarn install",
"install:demo": "yarn install",
"build": "yarn lib:build && yarn demo:build",
"demo": "yarn demo:serve",
"lib:build": "ng build web3-connect -c production",
"demo:serve": "ng serve demo",
"demo:build": "ng build demo -c production",
"pack-lib": "cd dist/web3-connect && npm pack",
"publish:lib": "cd dist/web3-connect && npm publish --access public",
"server": "http-server dist/demo --proxy http://localhost:8080",
"deploy": "npm run install:lib && npm run install:demo && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/bee-io/web3-connect.git"
},
"bugs": {
"url": "https://github.com/bee-io/web3-connect/issues"
},
"homepage": "https://github.com/bee-io/web3-connect.git",
"license": "MIT",
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^15.0.0-beta.0",
"@angular-devkit/build-angular": "^15.0.0",
"@angular-devkit/core": "^15.0.0",
"@angular-devkit/schematics": "^15.0.0",
"@angular/animations": "^15.0.0",
"@angular/cdk": "^15.0.0",
"@angular/cli": "^15.0.0",
"@angular/common": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/forms": "^15.0.0",
"@angular/localize": "15.2.9",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@angular/platform-server": "^15.0.0",
"@angular/router": "^15.0.0",
"@ant-design/dark-theme": "^2.0.2",
"@ant-design/icons-angular": "^15.0.0",
"@schematics/angular": "^15.0.0",
"@stackblitz/sdk": "^1.5.2",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"codesandbox": "^2.2.1",
"console-browserify": "^1.2.0",
"ethers": "^5.7.2",
"flickity": "^3.0.0",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^15.0.0",
"ng-zorro-antd": "^15.1.0",
"ngx-quicklink": "^0.3.0",
"prismjs": "^1.20.0",
"rxjs": "~7.5.5",
"typescript": "~4.9.5",
"zone.js": "~0.11.4"
}
}