-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.72 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
{
"name": "extreme-angular",
"engines": {
"node": "^22.0.0"
},
"type": "module",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless",
"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 \"**/*.{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 install"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.2",
"@angular/common": "^19.1.2",
"@angular/compiler": "^19.1.2",
"@angular/core": "^19.1.2",
"@angular/forms": "^19.1.2",
"@angular/platform-browser": "^19.1.2",
"@angular/platform-browser-dynamic": "^19.1.2",
"@angular/router": "^19.1.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.3",
"@angular/cli": "^19.1.3",
"@angular/compiler-cli": "^19.1.2",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/jasmine": "~5.1.0",
"angular-eslint": "19.0.2",
"cspell": "^8.17.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-formatter-mo": "^2.1.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-jsonc": "^2.18.2",
"husky": "^8.0.0",
"jasmine-core": "~5.4.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",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-sh": "^0.14.0",
"stylelint": "^16.13.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"tsc-files": "^1.1.4",
"typescript": "~5.7.3",
"typescript-eslint": "8.21.0"
}
}