-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.39 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.39 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
{
"name": "anton-webapp",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --configuration=development",
"build:prod": "ng build --configuration=production --localize",
"build:dev": "ng build --configuration=development --localize",
"lint": "ng lint",
"ci:master": "AWS_REGION=eu-west-1 AWS_SDK_LOAD_CONFIG=1 node ci/translations-export.js ./src/locale/ && npm run build:prod",
"ci:develop": "AWS_REGION=eu-west-1 AWS_SDK_LOAD_CONFIG=1 node ci/translations-export.js ./src/locale/ && npm run build:dev",
"deploy:develop": "./deploy.sh develop",
"deploy:master": "./deploy.sh prod",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@amcharts/amcharts5": "^5.2.14",
"@angular-slider/ngx-slider": "^2.0.4",
"@angular/animations": "~13.1.0",
"@angular/common": "~13.1.0",
"@angular/compiler": "~13.1.0",
"@angular/core": "~13.1.0",
"@angular/forms": "~13.1.0",
"@angular/platform-browser": "~13.1.0",
"@angular/platform-browser-dynamic": "~13.1.0",
"@angular/router": "~13.1.0",
"@antonlabs/rack": "0.0.7",
"@aws-sdk/client-cognito-identity": "^3.50.0",
"@aws-sdk/client-cognito-identity-provider": "^3.50.0",
"@aws-sdk/client-dynamodb": "^3.50.0",
"@aws-sdk/credential-provider-cognito-identity": "^3.50.0",
"@aws-sdk/lib-dynamodb": "^3.50.0",
"@aws-sdk/protocol-http": "^3.50.0",
"@aws-sdk/signature-v4": "^3.50.0",
"@ng-icons/core": "^13.3.0",
"@ng-icons/jam-icons": "^13.3.0",
"@ng-icons/material-icons": "^13.3.0",
"@types/crypto-js": "^4.1.1",
"aws4fetch": "^1.0.13",
"crypto-js": "^4.1.1",
"jwt-decode": "^3.1.2",
"lightweight-charts": "^3.7.0",
"ng-recaptcha": "^9.0.0",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.4",
"@angular/cli": "~13.1.4",
"@angular/compiler-cli": "~13.1.0",
"@angular/localize": "^13.1.3",
"@aws-sdk/types": "^3.49.0",
"@types/canvas-confetti": "^1.4.2",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"jasmine-core": "~3.10.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",
"typescript": "~4.5.2"
}
}