-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.62 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
{
"name": "game-viewer",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "npx playwright test --ui",
"test:headless": "npx playwright test",
"test:unit": "npx vitest run",
"lint": "npm run lint:ts && npm run lint:css",
"lint:ts": "eslint \"**/*.{ts,mjs}\" \"src/**/*.html\" --ignore-pattern \"node_modules/**\" --ignore-pattern \"dist/**\" --ignore-pattern \".playwright-mcp/**\"",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:fix": "eslint \"**/*.{ts,mjs}\" \"src/**/*.html\" --ignore-pattern \"node_modules/**\" --ignore-pattern \"dist/**\" --ignore-pattern \".playwright-mcp/**\" --fix && stylelint \"src/**/*.css\" --fix",
"format": "prettier --write \"**/*.{ts,html,css,scss,json,mjs,md}\" \"!openRouterModels.json\" \"!.playwright-mcp/**\"",
"format:check": "prettier --check \"**/*.{ts,html,css,scss,json,mjs,md}\" \"!openRouterModels.json\" \"!.playwright-mcp/**\"",
"typecheck": "tsc --noEmit",
"build-readme": "npx tsx scripts/build-readme.ts",
"check": "npm run lint && npm run format:check && npm run test:unit && npm run build-readme",
"prepare": "husky"
},
"lint-staged": {
"**/*.{ts,mjs,html}": [
"eslint --fix",
"prettier --write"
],
"**/*.css": [
"stylelint --fix",
"prettier --write"
],
"**/*.{scss,json,md}": [
"prettier --write"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.14",
"@angular/common": "^21.2.14",
"@angular/compiler": "^21.2.14",
"@angular/core": "^21.2.14",
"@angular/forms": "^21.2.14",
"@angular/platform-browser": "^21.2.14",
"@angular/platform-browser-dynamic": "^21.2.14",
"@angular/router": "^21.2.14",
"@types/three": "^0.184.1",
"rxjs": "~7.8.0",
"three": "^0.184.0",
"tslib": "^2.8.0",
"zone.js": "~0.16.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.0.0",
"@angular-eslint/template-parser": "^21.4.0",
"@angular/cli": "^21.0.0",
"@angular/compiler-cli": "^21.2.14",
"@playwright/test": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"happy-dom": "^20.10.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"stylelint": "^17.13.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "~5.9.0"
}
}