-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.51 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.51 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
{
"name": "extreme-angular",
"engines": {
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
},
"packageManager": "npm@11.6.2",
"type": "module",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "ng test --watch=false",
"test:build": "ng test --watch=false --dump-virtual-files",
"format:base": "prettier --log-level warn --ignore-path=./.gitignore \"**/*.{js,ts,css,scss,sh,html,md,json,yaml,yml}\"",
"format": "npm run format:base -- --write",
"lint": "eslint -f mo \"**/*.{js,ts,html,json}\"",
"lint:style": "stylelint --ignore-path .gitignore \"**/*.{css,scss}\"",
"lint:spelling": "cspell --quiet \"**/*\"",
"lint:tsc:app": "tsc --noEmit -p tsconfig.app.json",
"lint:tsc:spec": "tsc --noEmit -p tsconfig.spec.json",
"lint:tsc:all": "npm run lint:tsc:app && npm run lint:tsc:spec",
"lint:format": "npm run format:base -- --check",
"lint:all": "npm run lint:tsc:all && npm run lint && npm run lint:style && npm run lint:spelling && npm run lint:format",
"ci:all": "npm run lint:all && npm run test:ci",
"shove": "git config push.autoSetupRemote true && git add . && git commit -m 'wip: shoved' --no-verify && git push --no-verify",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@angular/common": "^21.2.4",
"@angular/compiler": "^21.2.4",
"@angular/core": "^21.2.4",
"@angular/forms": "^21.2.4",
"@angular/platform-browser": "^21.2.4",
"@angular/router": "^21.2.4",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^21.2.2",
"@angular/cli": "^21.2.2",
"@angular/compiler-cli": "^21.2.4",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@vitest/eslint-plugin": "^1.5.1",
"angular-eslint": "21.3.0",
"cspell": "^9.4.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-mo": "^2.4.1",
"eslint-plugin-jsonc": "^2.21.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-sh": "^0.18.0",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-config-standard-scss": "^16.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.15"
}
}