-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.28 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.28 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": "angular-oidc-template",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run fix && ng build",
"build-prod-s3": "ncp src/environments/environment-s3.ts src/environments/environment.prod.ts && ng build --prod --output-path docs && ncp docs/index.html docs/error.html",
"build-prod-netify": "ncp src/environments/environment-netify.ts src/environments/environment.prod.ts && ng build --prod --output-path docs && ncp docs/index.html docs/error.html",
"build-prod-github-pages": "ncp src/environments/environment-github-pages.ts src/environments/environment.prod.ts && ng build --prod --output-path docs --base-href /Angular-template/ && ncp docs/index.html docs/404.html",
"test": "npm run fix && jest --coverage",
"e2e": "ng e2e",
"compile": "tsc",
"fix": "eslint . --ext .ts --fix && npx @appnest/readme generate"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.0.0",
"@angular/common": "~12.0.0",
"@angular/compiler": "~12.0.0",
"@angular/core": "~12.0.0",
"@angular/forms": "~12.0.0",
"@angular/platform-browser": "~12.0.0",
"@angular/platform-browser-dynamic": "~12.0.0",
"@angular/router": "~12.0.0",
"angular-oauth2-oidc": "^10.0.3",
"bootstrap": "^5.0.2",
"jquery": "^3.6.0",
"rxjs": "~7.1.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.1.0",
"@angular/cli": "~12.1.0",
"@angular/compiler-cli": "~12.0.0",
"@appnest/readme": "^1.2.7",
"@types/jest": "^26.0.23",
"@types/node": "^16.4.13",
"codelyzer": "^6.0.2",
"cypress": "^7.6.0",
"eslint": "^7.29.0",
"gts": "^3.1.0",
"jasmine-core": "~3.7.1",
"jasmine-spec-reporter": "~7.0.0",
"jest": "^26.6.3",
"jest-preset-angular": "^8.4.0",
"jest-sonar-reporter": "^2.0.0",
"ncp": "^2.0.0",
"ts-jest": "^26.5.6",
"ts-node": "~10.0.0",
"tslint": "~6.1.0",
"typescript": "^4.2.4"
},
"jest": {
"testResultsProcessor": "jest-sonar-reporter",
"collectCoverage": true,
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/e2e/",
"<rootDir>/node_modules/"
]
}
}