forked from nixer89/xrpl-services-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.74 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
{
"name": "xumm-community",
"version": "2.6.5",
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"build": "ng build --prod",
"upload": "ng build --prod & aws s3 --profile myevride rm s3://xumm.community/ --recursive & aws s3 --profile myevride cp ./dist/xumm-community s3://xumm.community/ --recursive --include '*' --acl public-read --cache-control public,max-age=604800,no-transform",
"invalidate": "aws cloudfront --profile myevride create-invalidation --distribution-id E1OAMTM9ZNSNWC --paths /*",
"upload-test": "ng build --prod & aws s3 --profile myevride rm s3://test.xumm.community/ --recursive & aws s3 --profile myevride cp ./dist/xumm-community s3://test.xumm.community/ --recursive --include '*' --acl public-read --cache-control public,max-age=604800,no-transform",
"invalidate-test": "aws cloudfront --profile myevride create-invalidation --distribution-id E1W458BY5YIPAH --paths /*",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.2.14",
"@angular/cdk": "^11.2.13",
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/core": "^11.2.14",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "^11.2.14",
"@angular/material": "^11.2.13",
"@angular/material-moment-adapter": "^11.2.13",
"@angular/platform-browser": "^11.2.14",
"@angular/platform-browser-dynamic": "^11.2.14",
"@angular/router": "^11.2.14",
"@angular/service-worker": "^11.2.14",
"@ctrl/ngx-codemirror": "^4.1.1",
"angular-2-local-storage": "^3.0.2",
"buffer": "^6.0.3",
"codemirror": "^5.62.0",
"copy-to-clipboard": "^3.3.1",
"email-validator": "^2.0.4",
"five-bells-condition": "^5.0.1",
"md5": "^2.3.0",
"moment": "^2.29.1",
"ngx-device-detector": "^2.1.1",
"qrcode": "^1.4.4",
"rxjs": "^6.6.7",
"tslib": "^2.3.0",
"xrpl-tagged-address-codec": "^0.2.1",
"xumm-sdk": "^0.4.6",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.14",
"@angular/cli": "^11.2.14",
"@angular/compiler-cli": "^11.2.14",
"@angular/language-service": "^11.2.14",
"@types/jasmine": "^3.7.8",
"@types/jasminewd2": "^2.0.10",
"@types/md5": "^2.3.1",
"@types/node": "^12.20.15",
"@types/qrcode": "^1.4.0",
"codelyzer": "^6.0.2",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "~6.2.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.6.0",
"protractor": "~7.0.0",
"ts-node": "^9.1.1",
"tslint": "~6.1.0",
"typescript": "~4.1.6"
}
}