-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.56 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
{
"name": "wahlberater",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "find ./src/assets/data -type f -not -name '.gitkeep' -delete && ng build",
"build:prod": "find ./src/assets/data -type f -not -name '.gitkeep' -delete && ng build --prod",
"build:staging": "npm run build-dummy-data && ng build --prod",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "ng lint",
"e2e": "ng e2e",
"postinstall": "ngcc",
"ngcc": "ngcc",
"prettier": "prettier --config ./.prettierrc --write \"src/**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"format:check": "prettier --list-different \"src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss}\"",
"ts-node": "ts-node",
"build-data-json": "ts-node --project tsconfig.scripts.json ./scripts/build-data-json.ts --",
"build-dummy-data": "find ./src/assets/data -type f -not -name '.gitkeep' -delete && npm run build-data-json -- --input ./data/dummy --output ./src/assets/data --anonymize-ids --rewrite-order --positioned-entities both",
"preaccessibility": "npm run build",
"accessibility": "npm run check-axe-tests && npm-run-all --parallel --race server accessibility:run",
"accessibility:run": "pa11y-ci",
"check-axe-tests": "./scripts/check-axe-tests.sh",
"server": "angular-http-server -p 4000 --rootFile src/index.html",
"server2": "node ./server.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,html,component.html}": [
"prettier --write"
]
},
"private": true,
"dependencies": {
"@angular/animations": "~10.1.4",
"@angular/common": "~10.1.4",
"@angular/compiler": "~10.1.4",
"@angular/core": "~10.1.4",
"@angular/forms": "~10.1.4",
"@angular/platform-browser": "~10.1.4",
"@angular/platform-browser-dynamic": "~10.1.4",
"@angular/router": "~10.1.4",
"@ngrx/effects": "^10.0.0",
"@ngrx/router-store": "^10.0.0",
"@ngrx/store": "^10.0.0",
"@ngrx/store-devtools": "^10.0.0",
"@types/intro.js": "^3.0.2",
"@types/marked": "^2.0.0",
"dompurify": "^2.2.2",
"intro.js": "^4.1.0",
"marked": "^1.2.5",
"ng-zorro-antd": "^10.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1001.4",
"@angular/cli": "~10.1.4",
"@angular/compiler-cli": "~10.1.4",
"@types/color": "^3.0.1",
"@types/jest": "^27.0.0",
"@types/js-yaml": "^3.12.5",
"@types/node": "^12.20.4",
"@types/sharp": "^0.26.1",
"@types/uuid": "^8.3.0",
"@types/yargs": "^15.0.10",
"angular-http-server": "^1.10.0",
"axe-core": "^3.5.5",
"codelyzer": "^6.0.0",
"color": "^3.1.3",
"husky": "^4.3.6",
"jest": "^27.0.6",
"jest-preset-angular": "^9.0.5",
"js-yaml": "^3.14.0",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"pa11y-ci": "^2.4.0",
"prettier": "^2.1.2",
"protractor": "~7.0.0",
"sharp": "^0.26.3",
"ts-node": "^8.3.0",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.0.2",
"uuid": "^8.3.1",
"yargs": "^16.1.1"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setupJest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tsconfig.spec.json",
"stringifyContentPathRegex": "\\.html$"
}
}
}
}