-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.45 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
{
"name": "my-workspace",
"scripts": {
"ng": "ng",
"ngx-theme-stack:sync": "ng generate ./dist/ngx-theme-stack/schematics/collection.json:sync --project demo-ngx-theme-stack",
"prestart": "pnpm run ngx-theme-stack:sync",
"start": "ng serve",
"prestart:demo": "pnpm run ngx-theme-stack:sync",
"start:demo": "ng serve -o demo-ngx-theme-stack",
"build:lib": "ng build ngx-theme-stack && cd projects/ngx-theme-stack/ && pnpm run build",
"prebuild:demo": "pnpm run ngx-theme-stack:sync",
"build:demo": "ng build demo-ngx-theme-stack",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"release": "release-it",
"release:next": "release-it --preRelease=next",
"serve:ssr:demo-ngx-theme-stack": "node dist/demo-ngx-theme-stack/server/server.mjs",
"prebuild": "pnpm run ngx-theme-stack:sync",
"ngx-theme-stack:skill": "ng generate ./dist/ngx-theme-stack/schematics/collection.json:skill --project demo-ngx-theme-stack"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"packageManager": "pnpm@10.30.3",
"dependencies": {
"@angular/common": "^22.0.4",
"@angular/compiler": "^22.0.4",
"@angular/core": "^22.0.4",
"@angular/forms": "^22.0.4",
"@angular/platform-browser": "^22.0.4",
"@angular/platform-server": "^22.0.4",
"@angular/router": "^22.0.4",
"@angular/ssr": "^22.0.4",
"express": "^5.2.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-devkit/schematics": "^22.0.4",
"@angular-eslint/builder": "22.0.0",
"@angular/build": "^22.0.4",
"@angular/cli": "^22.0.4",
"@angular/compiler-cli": "^22.0.4",
"@eslint/js": "^10.0.1",
"@release-it/conventional-changelog": "^10.0.6",
"@schematics/angular": "^22.0.4",
"@tailwindcss/postcss": "^4.3.2",
"@types/express": "^5.0.6",
"@types/node": "^20.19.43",
"angular-eslint": "22.0.0",
"copyfiles": "^2.4.1",
"eslint": "^10.6.0",
"jsdom": "^28.1.0",
"ng-packagr": "^22.0.0",
"ngx-theme-stack": "workspace:*",
"postcss": "^8.5.16",
"release-it": "^18.1.2",
"tailwind-animations": "^1.0.1",
"tailwindcss": "^4.3.2",
"typescript": "~6.0.3",
"typescript-eslint": "8.62.1",
"vitest": "^4.1.9"
},
"version": "3.9.2"
}