forked from hadagarcia/implementing-web-accessibility
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 3.12 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
{
"name": "accessibility-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"build:prod": "ng build --configuration production",
"start": "ng serve",
"start:prod": "ng serve --port 4201 --configuration production --live-reload=false",
"start:lighthouse": "npm run build:prod && ws --spa index.html --port 4201 --directory ./dist/accessibility-app",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test --code-coverage --watch=false",
"test:a11y": "playwright test tests/axe-core.spec.ts --project=chromium",
"test:lighthouse-ci": "wait-on -t 300000 http://localhost:4201/ && lighthouse-ci --performance=0 --accessibility=90 --best-practices=0 --seo=0 --pwa=0 --report=html --output-path=dist/lighthouse-report.html http://localhost:4201/",
"test:lighthouse-ci:prod": "concurrently \"npm:start:lighthouse\" \"npm:test:lighthouse-ci\" --kill-others --success=first",
"cypress:open": "cypress open",
"cypress:run:e2e": "wait-on -t 300000 http://localhost:4201/ && cypress run --browser chrome --headless --e2e && cypress run --browser chrome --headless --component",
"cypress:run:component": "wait-on -t 300000 http://localhost:4201/ && cypress run --browser chrome --headless --component",
"lint:js": "ng lint",
"lint:js:fix": "eslint --ignore-path .gitignore --fix \"./src/**/*.{js,mjs,ts}\"",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.0",
"@angular/common": "^16.1.0",
"@angular/compiler": "^16.1.0",
"@angular/core": "^16.1.0",
"@angular/forms": "^16.1.0",
"@angular/platform-browser": "^16.1.0",
"@angular/platform-browser-dynamic": "^16.1.0",
"@angular/router": "^16.1.0",
"eslint": "^8.57.1",
"lighthouse-ci": "^1.13.1",
"local-web-server": "^5.4.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.4",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "~16.1.4",
"@angular/compiler-cli": "^16.1.0",
"@axe-core/playwright": "^4.8.5",
"@cypress/schematic": "^2.5.1",
"@cypress/webpack-preprocessor": "^6.0.1",
"@playwright/test": "^1.47.2",
"@types/jasmine": "~4.3.0",
"@types/node": "^20.11.29",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"axe-core": "^4.9.1",
"concurrently": "^9.0.1",
"cypress": "^13.13.0",
"cypress-axe": "^1.5.0",
"eslint": "^8.51.0",
"jasmine-axe": "^1.1.0",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lighthouse": "^12.2.1",
"playwright": "^1.47.2",
"playwright-chromium": "1.47.2",
"playwright-lighthouse": "^4.0.0",
"typescript": "~5.1.3",
"wait-on": "^8.0.1"
}
}