-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.45 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
{
"name": "web-worker-patterns",
"version": "0.0.0",
"description": "An interactive educational platform demonstrating advanced Web Worker patterns and architectural strategies in Angular.",
"author": "Damian Sire <damiansire@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/damiansire/web-worker-patterns.git"
},
"bugs": {
"url": "https://github.com/damiansire/web-worker-patterns/issues"
},
"keywords": [
"angular",
"web-workers",
"zoneless",
"performance"
],
"workspaces": [
"packages/*"
],
"scripts": {
"ng": "ng",
"dev": "node scripts/start/start.cjs",
"start": "ng serve",
"prebuild": "npm run build --workspace packages/worker-patterns-core",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"pretest": "npm run build --workspace packages/worker-patterns-core && npm test --workspace packages/worker-patterns-core",
"test": "node scripts/test/guard-tests.mjs",
"test:raw": "ng test",
"lint": "eslint .",
"lint:boundaries": "node scripts/lint/boundaries.mjs",
"format": "prettier --write \"src/**/*.{ts,html,scss,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,scss,json}\"",
"screenshots": "node scripts/shots-all.mjs",
"setup": "node scripts/setup-git-hooks.mjs",
"prepare": "node scripts/setup-git-hooks.mjs"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"packageManager": "npm@10.9.2",
"dependencies": {
"@angular/cdk": "^22.0.1",
"@angular/common": "^22.0.1",
"@angular/compiler": "^22.0.1",
"@angular/core": "^22.0.1",
"@angular/forms": "^22.0.1",
"@angular/platform-browser": "^22.0.1",
"@angular/router": "^22.0.1",
"@jsverse/transloco": "^7.6.1",
"highlight.js": "^11.11.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-eslint/template-parser": "^22.0.0",
"@angular/build": "^22.0.1",
"@angular/cli": "^22.0.1",
"@angular/compiler-cli": "^22.0.1",
"angular-eslint": "^22.0.0",
"dependency-cruiser": "^17.4.3",
"eslint": "^10.5.0",
"jsdom": "^27.0.0",
"playwright": "^1.60.0",
"prettier": "^3.8.4",
"typescript": "~6.0.3",
"typescript-eslint": "^8.61.1",
"vitest": "^4.0.0"
}
}