forked from FJNR-inc/Blitz-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.68 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "blitz-website",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"extract": "ngx-translate-extract --input ./src --output ./src/assets/i18n/ --sort --format json --marker _ --format-indentation ' '",
"build:prod": "ng build -c=prod --prod=\"true\"",
"aws_clean:prod": "aws s3 rm s3://thesezvous-frontend --recursive",
"aws_copy:prod": "aws s3 cp ./dist s3://thesezvous-frontend --recursive --acl public-read",
"aws_copy:prod:deploy_page": "aws s3 cp ./deploy s3://thesezvous-frontend --recursive --acl public-read",
"aws_invalidate": "aws cloudfront create-invalidation --distribution-id E1UQGH7N2I6YW4 --paths /index.html",
"deploy:prod": "npm run build:prod && firebase deploy --only hosting --project thesez-vous-5e376",
"deploy:prod:deploy_page": "npm run aws_clean:prod && npm run aws_copy:prod:deploy_page && npm run aws_invalidate",
"build:qa": "ng build -c=qa",
"aws_clean:qa": "aws s3 rm s3://thesezvous-dev-frontendbucket-3k24zycbd7x --recursive",
"aws_copy:qa": "aws s3 cp ./dist s3://thesezvous-dev-frontendbucket-3k24zycbd7x --recursive --acl public-read",
"aws_copy:qa:deploy_page": "aws s3 cp ./deploy s3://thesezvous-dev-frontendbucket-3k24zycbd7x --recursive --acl public-read",
"aws_invalidate:qa": "aws cloudfront create-invalidation --distribution-id E2R00F4J8NO75S --paths /index.html",
"deploy:qa": "npm run build:qa && npm run aws_clean:qa && npm run aws_copy:qa && npm run aws_invalidate:qa",
"deploy:qa:deploy_page": "npm run aws_clean:qa && npm run aws_copy:qa:deploy_page && npm run aws_invalidate:qa"
},
"private": true,
"dependencies": {
"@angular/animations": "^8.2.14",
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^8.2.14",
"@ckeditor/ckeditor5-angular": "^1.1.2",
"@ckeditor/ckeditor5-build-inline": "^17.0.0",
"@ckeditor/ckeditor5-font": "^17.0.0",
"@ngx-translate/core": "^10.0.0",
"@ngx-translate/http-loader": "^4.0.0",
"@rignonnoel/angular-multiselect": "2.0.0",
"@types/uuid": "^3.4.6",
"angular2-image-upload": "^1.0.0-rc.2",
"angular2-notifications": "^2.0.0",
"chart.js": "^2.9.3",
"chartjs-plugin-datalabels": "^0.6.0",
"classlist.js": "^1.1.20150312",
"core-js": "^2.6.10",
"hammerjs": "^2.0.8",
"ng-pick-datetime": "^6.0.0",
"ng2-charts": "^2.3.0",
"rxjs": "^6.5.3",
"tslib": "^1.10.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.19",
"@angular/cli": "^8.3.19",
"@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "^8.2.14",
"@biesbjerg/ngx-translate-extract": "^2.3.4",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^6.0.118",
"codelyzer": "^5.0.1",
"coveralls": "^3.0.7",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "^3.1.4",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.4.3",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.14.1",
"protractor": "^5.4.2",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~3.5.3"
}
}