-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.61 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
76
77
78
79
80
81
82
{
"name": "ng-kit",
"version": "19.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve --watch --hmr --port=4300",
"build": "ng build ng-kit --configuration=production",
"build:ng-kit-demo": "ng build ng-kit-demo --configuration=production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:store": "ng test --include='**/store/*.spec.ts'",
"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",
"lint": "ng lint ng-kit"
},
"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": "^19.1.1",
"@angular/cdk": "19.1.0",
"@angular/common": "^19.1.1",
"@angular/compiler": "^19.1.1",
"@angular/core": "^19.1.1",
"@angular/forms": "^19.1.1",
"@angular/material": "19.1.0",
"@angular/platform-browser": "^19.1.1",
"@angular/platform-browser-dynamic": "^19.1.1",
"@angular/router": "^19.1.1",
"bootstrap": "^5.3.3",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.1",
"@angular-devkit/core": "^19.1.1",
"@angular-devkit/schematics": "^19.1.1",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "^19.1.1",
"@angular/compiler-cli": "^19.1.1",
"@playwright/test": "^1.49.1",
"@schematics/angular": "^19.1.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ng-packagr": "^19.1.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"@semantic-release/exec": "^6.0.3",
"typescript": "~5.7.3"
}
}