-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.05 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
{
"name": "ng-kit",
"version": "22.10.2",
"scripts": {
"ng": "ng",
"start": "ng serve ng-kit-demo --port=4300",
"build": "ng build ng-kit --configuration=production",
"build:demo": "ng build ng-kit-demo --configuration=production",
"watch": "ng build --watch --configuration development",
"test": "ng test ng-kit --watch=false",
"test:store": "ng test --include='**/store/*.spec.ts'",
"format": "prettier --cache --write .",
"format:write": "prettier --cache --write .",
"format:check": "prettier --check .",
"bundle:report": "ng build --configuration production --source-map=true && source-map-explorer dist/pres/**/*.js",
"e2e": "CI=true URL=http://localhost:4300 npx playwright test ng-kit-demo",
"lint": "ng lint ng-kit",
"prepare": "husky"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "dist/ng-kit"
}
],
"@semantic-release/git",
"@semantic-release/github"
]
},
"private": false,
"dependencies": {
"@angular/animations": "^22.1.0",
"@angular/cdk": "22.1.0",
"@angular/common": "^22.1.0",
"@angular/compiler": "^22.1.0",
"@angular/core": "^22.1.0",
"@angular/forms": "^22.1.0",
"@angular/material": "22.1.0",
"@angular/platform-browser": "^22.1.0",
"@angular/router": "^22.1.0",
"@tanstack/query-core": "^5.101.4",
"bootstrap": "^5.3.8",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-devkit/core": "^22.1.0",
"@angular-devkit/schematics": "^22.1.0",
"@angular/build": "^22.1.0",
"@angular/cli": "^22.1.0",
"@angular/compiler-cli": "^22.1.0",
"@eslint/js": "^10.0.1",
"@netlify/angular-runtime": "^4.0.0",
"@playwright/test": "^1.62.0",
"@schematics/angular": "^22.1.0",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.5",
"@sonar/scan": "^4.4.0",
"@stackblitz/sdk": "^1.11.1",
"@types/d3": "^7.4.3",
"@types/node": "^26.1.2",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitest/browser-playwright": "^4.1.10",
"angular-eslint": "22.1.0",
"baseline-browser-mapping": "^2.11.7",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^63.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"istanbul-lib-instrument": "^6.0.3",
"jsdom": "^29.1.1",
"lint-staged": "^17.3.0",
"ng-packagr": "^22.1.0",
"prettier": "^3.9.6",
"semantic-release": "^25.0.8",
"typescript": "~6.0.3",
"typescript-eslint": "8.63.0",
"vitest": "^4.1.10",
"zone.js": "~0.16.2"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari major versions",
"last 2 iOS major versions"
],
"lint-staged": {
"*": "prettier --cache --write --ignore-unknown"
}
}