-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "angular-architecture",
"version": "2.3.3",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"format": "prettier --write \"src/**/*.{ts,html,scss,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,html,scss,css,json}\"",
"domain": "node scripts/generate-domain/index.js",
"prepare": "husky"
},
"private": true,
"packageManager": "npm@11.9.0",
"dependencies": {
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/router": "^21.2.0",
"@ngx-translate/core": "^17.0.0",
"@ngx-translate/http-loader": "^17.0.0",
"mustache": "^4.2.0",
"prompt-sync": "^4.2.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-eslint/builder": "^21.3.0",
"@angular-eslint/eslint-plugin": "^21.3.0",
"@angular-eslint/eslint-plugin-template": "^21.3.0",
"@angular-eslint/schematics": "^21.3.0",
"@angular-eslint/template-parser": "^21.3.0",
"@angular/build": "^21.2.0",
"@angular/cli": "^21.2.0",
"@angular/compiler-cli": "^21.2.0",
"@tailwindcss/postcss": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.27",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"lint-staged": "^16.3.2",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.2",
"vitest": "^4.0.8"
},
"lint-staged": {
"*.{ts,js}": [
"./node_modules/.bin/eslint --max-warnings=0"
],
"*.html": [
"./node_modules/.bin/eslint --max-warnings=0"
],
"*.{scss,css,json}": [
"prettier --write"
]
}
}