-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 3.39 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
{
"name": "xrpl-services",
"version": "4.10.0",
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"build": "ng build --configuration production",
"upload": "ng build --configuration production & aws s3 --profile myevride rm s3://xrpl.services/ --recursive & aws s3 --profile myevride cp ./dist/xrpl-services s3://xrpl.services/ --recursive --include '*' --acl public-read --cache-control public,max-age=1800,no-transform",
"invalidate": "aws cloudfront --profile myevride create-invalidation --distribution-id E1FM28C5G2ZK2P --paths /*",
"upload-dev": "ng build --configuration production & aws s3 --profile myevride rm s3://dev.xrpl.services/ --recursive & aws s3 --profile myevride cp ./dist/xrpl-services s3://dev.xrpl.services/ --recursive --include '*' --acl public-read --cache-control public,max-age=1800,no-transform",
"invalidate-dev": "aws cloudfront --profile myevride create-invalidation --distribution-id E6F3YVCFVB1QD --paths /*",
"upload-qa": "ng build --configuration production & aws s3 --profile myevride rm s3://qa.xrpl.services/ --recursive & aws s3 --profile myevride cp ./dist/xrpl-services s3://qa.xrpl.services/ --recursive --include '*' --acl public-read --cache-control public,max-age=1800,no-transform",
"invalidate-qa": "aws cloudfront --profile myevride create-invalidation --distribution-id EL85OZ2PCZH5H --paths /*",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.1.0",
"@angular/cdk": "^13.1.0",
"@angular/common": "^13.1.0",
"@angular/compiler": "^13.1.0",
"@angular/core": "^13.1.0",
"@angular/flex-layout": "^13.0.0-beta.36",
"@angular/forms": "^13.1.0",
"@angular/material": "^13.1.0",
"@angular/material-moment-adapter": "^13.1.0",
"@angular/platform-browser": "^13.1.0",
"@angular/platform-browser-dynamic": "^13.1.0",
"@angular/router": "^13.1.0",
"@ctrl/ngx-codemirror": "^4.1.1",
"angular-2-local-storage": "^3.0.2",
"buffer": "^6.0.3",
"codemirror": "^5.63.3",
"copy-to-clipboard": "^3.3.1",
"crypto-browserify": "^3.12.0",
"elliptic": "^6.5.4",
"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",
"ripple-address-codec": "^4.2.4",
"ripple-keypairs": "^1.3.0",
"rippled-ws-client": "^1.6.5",
"rxjs": "^6.6.7",
"stream-browserify": "^3.0.0",
"tslib": "^2.3.1",
"vm-browserify": "^1.1.2",
"xrpl-orderbook-reader": "^0.3.3",
"xrpl-tagged-address-codec": "^0.2.1",
"xumm-sdk": "^0.4.6",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.0.4",
"@angular/cli": "^13.0.4",
"@angular/compiler-cli": "^13.1.0",
"@angular/language-service": "^13.1.0",
"@types/jasmine": "^3.10.2",
"@types/jasminewd2": "^2.0.10",
"@types/md5": "^2.3.1",
"@types/node": "16.10",
"@types/qrcode": "^1.4.1",
"codelyzer": "^6.0.2",
"jasmine-core": "^3.10.1",
"jasmine-spec-reporter": "^6.0.0",
"karma": "^6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"protractor": "~7.0.0",
"ts-node": "^9.1.1",
"tslint": "~6.1.0",
"typescript": "^4.6.4"
}
}