-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpackage.json
122 lines (122 loc) · 5.59 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "localcast-weather",
"version": "17.0.0",
"license": "MIT",
"config": {
"imageRepo": "duluca/localcast-weather",
"imageName": "localcast-weather",
"imagePort": "8080",
"internalContainerPort": "3000"
},
"scripts": {
"ng": "ng",
"style:fix": "prettier --write \"**/{src,tests,e2e}/**/*.{*css,ts,html}\"",
"style": "prettier --check \"**/{src,tests,e2e}/**/*.{*css,ts,html}\"",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test local-weather-app",
"test:debug": "npm test -- --source-map",
"test:coverage": "npm test -- --code-coverage",
"test:ci": "ng test --browsers=ChromeHeadless --watch=false --no-progress --code-coverage",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"e2e": "ng e2e",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"build:prod": "ng build --configuration production",
"predocker:build": "npm run build",
"docker:build": "cross-conf-env docker image build --platform linux/amd64,linux/arm64 . -t $npm_package_config_imageRepo:$npm_package_version",
"postdocker:build": "npm run docker:tag",
"docker:tag": " cross-conf-env docker image tag $npm_package_config_imageRepo:$npm_package_version $npm_package_config_imageRepo:latest",
"docker:run": "run-s -c docker:stop docker:runHelper",
"docker:runHelper": "cross-conf-env docker run -e NODE_ENV=local --rm --name $npm_package_config_imageName -d -p $npm_package_config_imagePort:$npm_package_config_internalContainerPort $npm_package_config_imageRepo",
"predocker:publish": "echo Attention! Ensure `docker login` information is correct.",
"docker:publish": "cross-conf-env docker image push $npm_package_config_imageRepo:$npm_package_version",
"postdocker:publish": "cross-conf-env docker image push $npm_package_config_imageRepo:latest",
"docker:clean": "cross-conf-env docker rm -f $npm_package_config_imageName",
"docker:taillogs": "echo Web Server Logs: && cross-conf-env docker logs -f $npm_package_config_imageName",
"docker:debugmessage": "echo Docker Debug Completed Successfully! Hit Ctrl+C to terminate log tailing.",
"docker:debug": "run-s -cs docker:build docker:run docker:open docker:debugmessage docker:taillogs",
"prevercel:publish": "npm run build:prod",
"vercel:publish": "vercel deploy --prod dist/local-weather-app --yes",
"test:a11y": "pa11y --standard Section508 http://localhost:4200",
"test:a11y:ci": "pa11y-ci",
"gcloud:tag": "docker tag duluca/localcast-weather gcr.io/localcast-weather/localcast-weather",
"gcloud:push": "docker push gcr.io/localcast-weather/localcast-weather",
"gcloud:build": "gcloud builds submit --tag gcr.io/localcast-weather/localcast-weather --project localcast-weather",
"gcloud:deploy": "gcloud run deploy --image gcr.io/localcast-weather/localcast-weather --platform managed --project localcast-weather --region us-east1",
"init:env": "init-dev-env generate-dot-env example.env -f",
"lint:ts": "tslint --config tslint.json --project . -e \"**/{test,polyfills}.ts\"",
"lint:ts:fix": "tslint --config tslint.json --fix --project . -e \"**/{test,polyfills}.ts\"",
"lint:tsc": "tsc --noEmit --skipLibCheck",
"docker:stop": "cross-conf-env docker stop $npm_package_config_imageName || true",
"docker:open": "sleep 2 && cross-conf-env open-cli http://localhost:$npm_package_config_imagePort"
},
"private": true,
"dependencies": {
"@angular/animations": "17.1.0",
"@angular/cdk": "17.1.0",
"@angular/common": "17.1.0",
"@angular/compiler": "17.1.0",
"@angular/core": "17.1.0",
"@angular/forms": "17.1.0",
"@angular/material": "17.1.0",
"@angular/platform-browser": "17.1.0",
"@angular/platform-browser-dynamic": "17.1.0",
"@angular/platform-server": "17.1.0",
"@angular/router": "17.1.0",
"@ngbracket/ngx-layout": "^17.0.0",
"@ngrx/component-store": "^17.1.0",
"@ngrx/effects": "^17.1.0",
"@ngrx/signals": "^17.1.0",
"@ngrx/store": "^17.1.0",
"@ngrx/store-devtools": "^17.1.0",
"rxjs": "^7.8.1",
"subsink": "^1.0.2",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.1.0",
"@angular-eslint/builder": "17.2.0",
"@angular-eslint/eslint-plugin": "17.2.0",
"@angular-eslint/eslint-plugin-template": "17.2.0",
"@angular-eslint/schematics": "17.2.0",
"@angular-eslint/template-parser": "17.2.0",
"@angular/cli": "17.1.0",
"@angular/compiler-cli": "^17.1.0",
"@angular/language-service": "^17.1.0",
"@cypress/schematic": "^2.5.1",
"@ngrx/eslint-plugin": "^17.1.0",
"@ngrx/schematics": "^17.1.0",
"@types/jasmine": "~5.1.4",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"angular-unit-test-helper": "^17.1.0",
"cross-conf-env": "^1.3.0",
"cypress": "^13.6.2",
"dev-norms": "^2.0.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"init-dev-env": "^2.0.0",
"jasmine-core": "~5.1.1",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-junit-reporter": "^2.0.1",
"ng-mocks": "^14.12.1",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"pa11y": "^6.2.3",
"pa11y-ci": "^3.1.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
"vercel": "^33.0.1"
}
}