-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.18 KB
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": "mx-template-dapp-angular",
"version": "2.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-mainnet": "ng serve --configuration=production",
"start-testnet": "ng serve --configuration=testnet",
"start-devnet": "ng serve --configuration=development",
"build-mainnet": "ng build --configuration=production",
"build-testnet": "ng build --configuration=testnet",
"build-devnet": "ng build --configuration=development",
"build": "ng build --configuration=development",
"watch": "ng build --watch --configuration=development",
"test": "ng test",
"preview": "ng serve --ssl"
},
"browser": {
"global": "global",
"process": "process/browser",
"crypto": "crypto-browserify",
"stream": "stream-browserify",
"path": "path-browserify",
"util": "util",
"fs": false
},
"dependencies": {
"@angular/common": "^20.3.25",
"@angular/compiler": "^20.3.25",
"@angular/core": "^20.3.25",
"@angular/forms": "^20.3.25",
"@angular/platform-browser": "^20.3.25",
"@angular/router": "^20.3.25",
"@fortawesome/angular-fontawesome": "^2.0.1",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@multiversx/sdk-core": "^15.4.1",
"@multiversx/sdk-dapp": "^5.7.1",
"@multiversx/sdk-dapp-ui": "^0.1.24",
"@multiversx/sdk-dapp-utils": "^3.1.0",
"axios": "^1.18.1",
"bignumber.js": "^9.3.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rxjs": "~7.8.2",
"stream-browserify": "^3.0.0",
"tslib": "^2.8.1",
"util": "^0.12.5",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular/build": "^20.3.30",
"@angular/cli": "^20.3.30",
"@angular/compiler-cli": "^20.3.25",
"@types/jasmine": "~5.1.15",
"@types/node": "^24.13.2",
"autoprefixer": "^10.4.21",
"jasmine-core": "~5.13.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.2.0",
"postcss": "^8.5.6",
"tailwindcss": "3.4.19",
"typescript": "~5.8.3"
}
}