This repository was archived by the owner on Dec 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.37 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 4.37 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "currency-utilities",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4000",
"build": "npm run prod-env-config && npm run lint && ng build --configuration=production",
"sanity": "npm run lint && ng test --watch false && webdriver-manager update && ng e2e --port 4001 --suite sanity",
"q": "npm run lint && npm run coverage && ng e2e --port 4001 --protractor-config=e2e/protractor-quick.conf.js --suite sanity",
"dev-coverage": "ng test --code-coverage --browsers Chrome",
"dev-e2e": "webdriver-manager update && ng e2e --devServerTarget=",
"dev-test": "ng test --browsers Chrome",
"lint": " npm run prettier && npm run cspell && npm run eslint && ng lint ",
"prettier": "prettier --write src/**/*.{ts,js,html,css} && prettier --write e2e/**/*.{ts,js}",
"e2e": "webdriver-manager update && ng e2e --port 4001",
"test": "ng test --watch false",
"coverage": "ng test --code-coverage --watch false --browsers ChromeHeadless",
"cspell": "cspell -- --no-summary src/**/*.{ts,js,html,css} && cspell -- --no-summary e2e/**/*.{ts,js}",
"eslint": "eslint --cache --fix src/**/*.{ts,js}",
"test-c": "npm run prettier && ng test --browsers Chrome",
"test-f": "npm run prettier && ng test --browsers Firefox",
"test-e": "npm run prettier && ng test --browsers Edge",
"test-h": "npm run prettier && ng test --browsers ChromeHeadless",
"prod-env-config": "ts-node ./src/environments/set-production-env.ts",
"prod-e2e": "protractor e2e/protractor-prod.conf.js",
"win-prod-e2e": "webdriver-manager update && protractor e2e/protractor-prod-win.conf.js",
"ci-sa-e2e": "npm run sa-env-config && ng e2e --protractor-config=e2e/protractor-ci.conf.js --configuration=standalone",
"ci-test": "npm run prettier && ng test --karmaConfig=src/karma-ci.conf.js --code-coverage --watch false",
"sa-env-config": "ts-node ./src/environments/set-standalone-env.ts",
"sa-start": "npm run sa-env-config && ng serve --port 4000 --configuration=standalone",
"sa-build": "npm run sa-env-config && npm run lint && ng build --configuration=standalone"
},
"private": true,
"dependencies": {
"@angular/animations": "^10.1.0",
"@angular/cdk": "~10.2.0",
"@angular/common": "^10.1.0",
"@angular/compiler": "^10.1.0",
"@angular/core": "^10.1.0",
"@angular/flex-layout": "^10.0.0-beta.32",
"@angular/forms": "^10.1.0",
"@angular/material": "~10.2.0",
"@angular/platform-browser": "^10.1.0",
"@angular/platform-browser-dynamic": "^10.1.0",
"@angular/router": "^10.1.0",
"core-js": "^2.6.11",
"dotenv": "^8.2.0",
"rxjs": "^6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1001.0",
"@angular/cli": "^10.1.0",
"@angular/compiler-cli": "~10.1.0",
"@angular/language-service": "^10.1.0",
"@chiragrupani/karma-chromium-edge-launcher": "^1.2.5",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"angular-estree-parser": "^2.0.0",
"codelyzer": "^6.0.0",
"cspell": "^4.0.63",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-html-parser": "^6.8.0",
"eslint-plugin-prettier": "^3.1.3",
"fs-extra": "^8.1.0",
"husky": "^4.2.5",
"jasmine-core": "~3.5.0",
"jasmine-reporters": "^2.3.2",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-firefox-launcher": "^1.3.0",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-spec-reporter": "0.0.32",
"lint-staged": "^10.2.1",
"prettier": "^2.0.5",
"protractor": "~7.0.0",
"protractor-html-reporter-2": "^1.0.4",
"ts-node": "^8.10.1",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "~3.9.7",
"vercel": "^19.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,html,css,md}": [
"cspell -- --no-summary"
],
"*.{js,ts,html,css}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --cache --fix"
]
}
}