-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
143 lines (143 loc) · 5.76 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "easycla-contributor-console",
"description": "The EasyCLA v2 Contributor Console",
"author": {
"name": "The Linux Foundation",
"email": "[email protected]",
"url": "https://www.linuxfoundation.org/"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=8.0.0"
},
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"serve": "ng serve",
"build": "ng build",
"serve:dev:local": "yarn prebuild:dev && ng serve --port 8100",
"build:dev": "yarn prebuild:dev && ng build --prod --configuration=dev",
"build:staging": "yarn prebuild:staging && ng build --prod --configuration=staging",
"build:prod": "yarn prebuild:prod && ng build --prod --configuration=production",
"serve-local": "ng serve --port 8100",
"test": "yarn test:unit",
"test:unit": "ng test --watch=false --progress=false --browsers=ChromeHeadless",
"lint": "ng lint",
"e2e": "ng e2e",
"sls": "./node_modules/serverless/bin/serverless.js",
"eslint": "eslint \"./src/**/*.ts\"",
"eslint-fix": "eslint \"./src/**/*.ts\" --fix",
"deploy:cloudfront:dev": "SLS_DEBUG=* ROOT_DOMAIN=dev.communitybridge.org PRODUCT_DOMAIN=easycla.dev.communitybridge.org yarn sls deploy --stage='dev' --verbose",
"deploy:frontend:dev": "SLS_DEBUG=* ROOT_DOMAIN=dev.communitybridge.org PRODUCT_DOMAIN=easycla.dev.communitybridge.org yarn sls client deploy --stage='dev' --no-confirm --no-policy-change --no-config-change --verbose",
"remove:dev": "SLS_DEBUG=* yarn sls remove --stage='dev' --region='us-east-1' --verbose",
"deploy:cloudfront:staging": "SLS_DEBUG=* ROOT_DOMAIN=staging.communitybridge.org PRODUCT_DOMAIN=easycla.staging.communitybridge.org yarn sls deploy --stage='staging' --verbose",
"deploy:frontend:staging": "SLS_DEBUG=* ROOT_DOMAIN=staging.communitybridge.org PRODUCT_DOMAIN=easycla.staging.communitybridge.org yarn sls client deploy --stage='staging' --no-confirm --no-policy-change --no-config-change --verbose",
"remove:staging": "SLS_DEBUG=* yarn sls remove --stage='staging' --region='us-east-1' --verbose",
"deploy:cloudfront:prod": "SLS_DEBUG=* ROOT_DOMAIN=communitybridge.org PRODUCT_DOMAIN=easycla.communitybridge.org yarn sls deploy --stage='prod' --verbose",
"deploy:frontend:prod": "SLS_DEBUG=* ROOT_DOMAIN=communitybridge.org PRODUCT_DOMAIN=easycla.communitybridge.org yarn sls client deploy --stage='prod' --no-confirm --no-policy-change --no-config-change --verbose",
"remove:prod": "SLS_DEBUG=* yarn sls remove --stage='prod' --region='us-east-1' --verbose",
"prebuild:dev": "STAGE_ENV=dev node ./src/app/config/scripts/prefetch-ssm.js",
"prebuild:staging": "STAGE_ENV=staging node ./src/app/config/scripts/prefetch-ssm.js",
"prebuild:prod": "STAGE_ENV=prod node ./src/app/config/scripts/prefetch-ssm.js"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.2.14",
"@angular/common": "~11.2.14",
"@angular/compiler": "~11.2.14",
"@angular/core": "~11.2.14",
"@angular/forms": "~11.2.14",
"@angular/localize": "~11.2.14",
"@angular/platform-browser": "~11.2.14",
"@angular/platform-browser-dynamic": "~11.2.14",
"@angular/router": "~11.2.14",
"@auth0/auth0-angular": "1.5.1",
"@fortawesome/fontawesome-free": "^6.4.0",
"@ng-bootstrap/ng-bootstrap": "^6.1.0",
"@silvermine/serverless-plugin-cloudfront-lambda-edge": "^2.1.1",
"@linuxfoundation/lfx-ui-core": "^0.0.12",
"aws-sdk": "2.1558.0",
"@types/node": "^18.16.0",
"auth0-spa-js": "^1.6.5",
"bootstrap": "^4.4.0",
"file-saver": "^2.0.5",
"query-string": "^6.13.8",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"url-parse": "^1.5.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.19",
"@angular/cli": "~11.2.19",
"@angular/compiler-cli": "~11.2.14",
"@angular/language-service": "~11.2.14",
"@types/jasmine": "~4.3.1",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"codelyzer": "^6.0.2",
"eslint": "^7.0.0",
"husky": "^4.2.5",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.14",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"serverless": "^3.33.0",
"serverless-finch": "^4.0.3",
"serverless-lambda-version": "^0.1.2",
"serverless-layers": "^2.6.1",
"serverless-plugin-tracing": "^2.0.0",
"serverless-prune-plugin": "^2.0.2",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.1.6"
},
"husky": {
"hooks": {
"pre-push": "yarn eslint --quiet"
}
},
"resolutions": {
"webdriver-manager": "^12.1.9",
"universal-analytics": "^0.5.3",
"node-gyp": "^9.3.1",
"vm2": "^3.9.18",
"xml2js": "^0.5.0",
"dns-packet": "^5.4.0",
"husky": "^8.0.3",
"@angular/core": "^11.0.5",
"axios": "^0.21.2",
"cookiejar": "^2.1.4",
"degenerator": "^3.0.1",
"follow-redirects": "^1.14.8",
"glob-parent": "^5.1.2",
"got": "^11.8.5",
"http-cache-semantics": "^4.1.1",
"json5": "^2.2.3",
"json-schema": "^0.4.0",
"jszip": "^3.10.1",
"loader-utils": "^2.0.4",
"minimatch": "^3.0.5",
"netmask": "^2.0.1",
"node-forge": "^1.0.0",
"pac-resolver": "^5.0.0",
"semver": "^7.5.3",
"semver-regex": "^3.1.4",
"set-value": "^4.0.2",
"simple-git": "^3.16.0",
"terser": "^5.14.2",
"ua-parser-js": "^1.0.33",
"underscore": "^1.13.1",
"ws": "^7.5.5",
"xmlhttprequest-ssl": "^1.6.3",
"@babel/traverse": "^7.23.2",
"postcss": "^8.4.31"
}
}