-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
129 lines (129 loc) · 4.71 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
{
"name": "relnotes",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:prod": "ng serve --configuration production",
"start:test": "ng serve --configuration=test",
"build-dev": "ng build --output-path dist-dev",
"build-prod": "ng build --configuration production --build-optimizer --output-path dist-prod",
"docker:build": "docker build -t relnotes .",
"docker:run": "docker run -i -t -p 80:80 --rm --name relnotes relnotes",
"docker:build:run": "npm run docker:build && npm run docker:run",
"test": "jest",
"lint": "ng lint",
"e2e-cy": "cypress run",
"e2e-cy-ci": "start-server-and-test start:test http-get://localhost:4200 e2e-cy",
"e2e-cy-open": "cypress open",
"update": "ncu -u",
"doc": "compodoc -p src/tsconfig.app.json",
"prettier": "prettier --write './**/*.{ts,json,md,css,scss,less,html,yml,yaml}'",
"check-prettier": "prettier -c './**/*.{ts,json,md,css,scss,less,html,yml,yaml}'",
"build-dev-image": "docker build . -f Dockerfile-dev -t relnotes:dev-build",
"build-dev-docker": "npm run build-dev-image && docker run relnotes:dev-build npm run build-dev",
"build-prod-docker": "npm run build-dev-image && docker run relnotes:dev-build npm run build-prod",
"check-prettier-docker": "npm run build-dev-image && docker run relnotes:dev-build npm run check-prettier",
"doc-docker": "npm run build-dev-image && docker run relnotes:dev-build npm run doc",
"e2e-cy-ci-docker": "docker build . -f Dockerfile-dev -t relnotes:dev-build-e2e --build-arg BASE=cypress/base:18.6.0 && docker run relnotes:dev-build-e2e npm run e2e-cy-ci",
"lint-docker": "npm run build-dev-image && docker run relnotes:dev-build npm run lint",
"test-docker": "npm run build-dev-image && docker run relnotes:dev-build npm run test"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.2.2",
"@angular/common": "^14.2.2",
"@angular/compiler": "^14.2.2",
"@angular/core": "^14.2.2",
"@angular/forms": "^14.2.2",
"@angular/localize": "^14.2.2",
"@angular/platform-browser": "^14.2.2",
"@angular/platform-browser-dynamic": "^14.2.2",
"@angular/router": "^14.2.2",
"@fortawesome/angular-fontawesome": "^0.11.1",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@ng-bootstrap/ng-bootstrap": "^13.0.0",
"@ngrx/effects": "^14.3.1",
"@ngrx/store": "^14.3.1",
"@ngrx/store-devtools": "^14.3.1",
"@popperjs/core": "^2.11.6",
"babel-jest": "^28.1.3",
"bootstrap": "^5.2.1",
"concurrently": "7.4.0",
"es6-promise": "^4.2.8",
"es6-shim": "^0.35.6",
"jquery": "^3.6.1",
"ngx-markdown": "^14.0.1",
"ngx-pagination": "^6.0.2",
"npm-check-updates": "^16.2.1",
"popper.js": "^1.16.1",
"rxjs": "^7.5.6",
"ts-jest": "^28.0.8",
"tslib": "^2.6.3",
"zone.js": "^0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.3",
"@angular-eslint/builder": "14.1.1",
"@angular-eslint/eslint-plugin": "14.1.1",
"@angular-eslint/eslint-plugin-template": "14.1.1",
"@angular-eslint/schematics": "14.1.1",
"@angular-eslint/template-parser": "14.1.1",
"@angular/cli": "^14.2.3",
"@angular/compiler-cli": "^14.2.2",
"@angular/language-service": "^14.2.2",
"@compodoc/compodoc": "^1.1.19",
"@types/jasmine": "^4.3.0",
"@types/jasminewd2": "^2.0.10",
"@types/jest": "^26.0.24",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"codelyzer": "^6.0.2",
"cypress": "^4.12.1",
"eslint": "^8.23.1",
"jasmine-core": "~4.4.0",
"jasmine-marbles": "^0.9.2",
"jasmine-spec-reporter": "~7.0.0",
"jest": "^28.1.3",
"jest-preset-angular": "^12.2.2",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"tar": "^6.2.1",
"ts-node": "^10.9.1",
"tslint": "~6.1.3",
"typescript": "4.8.3"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "<rootDir>/reports",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/src/environments/*.*/",
"/src/setupJest\\.ts/",
"[.*\\/]*.*.html"
],
"coverageReporters": [
"text",
"html"
],
"moduleNameMapper": {
"^@app(.*)$": "<rootDir>/src/app/$1",
"^@env(.*)$": "<rootDir>/src/environments/$1",
"^@shared(.*)$": "<rootDir>/src/app/shared/$1"
},
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setupJest.ts"
],
"silent": true,
"testPathIgnorePatterns": [
"<rootDir>/cypress",
"<rootDir>/src/environments"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}