-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "ng-init-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install"
},
"dependencies": {
"@analogjs/astro-angular": "^1.13.0",
"@angular-devkit/build-angular": "^19.1.5",
"@angular/animations": "^19.1.4",
"@angular/common": "^19.1.4",
"@angular/compiler": "^19.1.4",
"@angular/compiler-cli": "^19.1.4",
"@angular/core": "^19.1.4",
"@angular/language-service": "^19.1.4",
"@angular/platform-browser": "^19.1.4",
"@angular/platform-browser-dynamic": "^19.1.4",
"@angular/platform-server": "^19.1.4",
"@tailwindcss/vite": "^4.0.1",
"astro": "^5.1.10",
"rxjs": "^7.8.1",
"tailwindcss": "^4.0.1",
"tslib": "^2.8.1",
"zone.js": "^0.15.0"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1"
},
"lint-staged": {
"*.{astro,ts,js,css,md}": "prettier --write"
}
}