-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.27 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
{
"name": "@practica11y/source",
"version": "0.0.0",
"description": "A gamified, browser-based learning platform for web accessibility",
"license": "MIT",
"author": "Danny Koppenhagen <mail@k9n.dev> (https://k9n.dev)",
"repository": {
"type": "git",
"url": "https://github.com/d-koppenhagen/practica11y"
},
"homepage": "https://github.com/d-koppenhagen/practica11y#readme",
"bugs": {
"url": "https://github.com/d-koppenhagen/practica11y/issues"
},
"keywords": [
"accessibility",
"a11y",
"learning",
"angular",
"challenges",
"gamification"
],
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.1.1",
"scripts": {
"start": "nx serve practica11y",
"build": "nx build practica11y --no-tui",
"preview": "pnpm run build && pnpm dlx http-server dist/apps/practica11y/browser -p 8080 --gzip -c-1",
"test": "pnpm nx run-many --target=test",
"e2e": "pnpm nx e2e practica11y-e2e",
"e2e:ci": "pnpm nx e2e practica11y-e2e --configuration=ci",
"lint": "pnpm nx run-many --target=lint",
"format": "prettier --write .",
"analyze-tags": "tsx tools/analyze-tags.ts"
},
"private": true,
"dependencies": {
"@angular/aria": "catalog:",
"@angular/cdk": "catalog:",
"@angular/common": "catalog:",
"@angular/compiler": "catalog:",
"@angular/core": "catalog:",
"@angular/forms": "catalog:",
"@angular/platform-browser": "catalog:",
"@angular/router": "catalog:",
"@guidepup/virtual-screen-reader": "catalog:",
"@ng-catbee/monaco-editor": "catalog:",
"axe-core": "catalog:",
"colorjs.io": "catalog:",
"dom-accessibility-api": "catalog:",
"htmlparser2": "catalog:",
"marked": "catalog:",
"monaco-editor": "catalog:",
"rxjs": "catalog:",
"tslib": "catalog:",
"yaml": "catalog:"
},
"devDependencies": {
"@angular-devkit/core": "catalog:",
"@angular-devkit/schematics": "catalog:",
"@angular/build": "catalog:",
"@angular/cli": "catalog:",
"@angular/compiler-cli": "catalog:",
"@angular/language-service": "catalog:",
"@eslint/js": "catalog:",
"@nx/angular": "catalog:",
"@nx/eslint": "catalog:",
"@nx/eslint-plugin": "catalog:",
"@nx/js": "catalog:",
"@nx/vite": "catalog:",
"@nx/vitest": "catalog:",
"@nx/playwright": "catalog:",
"@nx/web": "catalog:",
"@nx/workspace": "catalog:",
"@schematics/angular": "catalog:",
"@swc-node/register": "catalog:",
"@swc/core": "catalog:",
"@swc/helpers": "catalog:",
"@testing-library/angular": "catalog:",
"@testing-library/dom": "catalog:",
"@testing-library/jest-dom": "catalog:",
"@types/node": "catalog:",
"@typescript-eslint/utils": "catalog:",
"@vitest/coverage-v8": "catalog:",
"angular-eslint": "catalog:",
"autoprefixer": "catalog:",
"esbuild": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"jsdom": "catalog:",
"jsonc-eslint-parser": "catalog:",
"ng-packagr": "catalog:",
"nx": "catalog:",
"postcss": "catalog:",
"prettier": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"tsx": "catalog:"
},
"nx": {
"includedScripts": []
}
}