-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.94 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.94 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "angular-starter",
"version": "0.0.1",
"description": "The Angular starter / boilerplate project to start a new enterprise project",
"author": "Wilfried Lucha <[email protected]>",
"homepage": "https://lucha.at",
"license": "MIT",
"contributors": [
"Wilfried Lucha <[email protected]>"
],
"keywords": [
"angular",
"angular 21",
"angular-starter",
"angular starter",
"angular-boilerplate",
"angular boilerplate",
"angular-template",
"angular template",
"jest",
"transloco",
"prettier",
"playwright",
"compodoc",
"docker",
"eslint",
"storybook",
"tailwind"
],
"repository": "https://github.com/wlucha/angular-starter.git",
"bugs": {
"url": "https://github.com/wlucha/angular-starter/issues"
},
"readme": "https://github.com/wlucha/angular-starter/blob/master/README.md",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production",
"build:prod:stats": "ng build --configuration production --stats-json",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage",
"lint": "eslint src/app/**/*.ts",
"e2e": "playwright test",
"compodoc": "npx compodoc -p tsconfig.app.json",
"analyze": "source-map-explorer dist/angular-starter/**/*.js",
"prettier": "prettier --write \"src/app/**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"prepare": "husky",
"audit": "auditjs ossi",
"version": "auto-changelog -p && git add CHANGELOG.md",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "ng run angular-starter:storybook",
"build-storybook": "ng run angular-starter:build-storybook"
},
"private": false,
"dependencies": {
"@angular/animations": "^21.1.5",
"@angular/cdk": "^21.1.5",
"@angular/common": "^21.1.5",
"@angular/compiler": "^21.1.5",
"@angular/core": "^21.1.5",
"@angular/forms": "^21.1.5",
"@angular/material": "^21.1.5",
"@angular/platform-browser": "^21.1.5",
"@angular/platform-browser-dynamic": "^21.1.5",
"@angular/router": "^21.1.5",
"@jsverse/transloco": "^8.2.1",
"@tailwindcss/postcss": "^4.2.0",
"postcss": "^8.5.6",
"rxjs": "~7.8.2",
"tailwindcss": "^4.2.0",
"tslib": "^2.6.3",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-eslint/builder": "^21.2.0",
"@angular-eslint/eslint-plugin": "^21.2.0",
"@angular-eslint/eslint-plugin-template": "^21.2.0",
"@angular-eslint/schematics": "^21.2.0",
"@angular-eslint/template-parser": "^21.2.0",
"@angular/build": "^21.1.4",
"@angular/cli": "21.1.4",
"@angular/compiler-cli": "^21.1.5",
"@babel/core": "^7.29.0",
"@chromatic-com/storybook": "^5.0.1",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@compodoc/compodoc": "^1.2.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@storybook/angular": "^10.2.10",
"@types/eslint": "9.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"auditjs": "^4.2.0",
"auto-changelog": "^2.5.0",
"babel-loader": "^10.0.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.7.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-storybook": "^10.2.10",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-junit": "^16.0.0",
"jest-preset-angular": "^16.0.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"source-map-explorer": "^2.5.3",
"storybook": "^10.2.10",
"ts-node": "~10.9.2",
"typescript": "5.9.3"
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,html,component.html}": [
"prettier --write"
]
}
}