-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.55 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
{
"name": "@ngx-layout/source",
"description": "ngx-layout",
"version": "22.0.0-rc",
"homepage": "https://github.com/ngbracket/ngx-layout",
"bugs": "https://github.com/ngbracket/ngx-layout/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/ngbracket/ngx-layout.git"
},
"license": "MIT",
"engines": {
"node": "^20.19.0 || >= 24.0.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve updated-demo",
"build": "ng build @ngbracket/ngx-layout",
"demo:serve": "ng serve updated-demo",
"docs": "cd projects/apps/docs/documentation && npx docusaurus start --port 3000",
"stamp": "ts-node tools/package-tools/version-placeholders.ts --module=commonjs",
"build:demo-app": "ng build updated-demo",
"build:docs": "cd projects/apps/docs/documentation && npx docusaurus build",
"build:universal-demo-app": "ng build universal-demo-app --configuration=production",
"serve:universal-demo-app": "ng serve universal-demo-app",
"serve:updated-demo-static": "ng build updated-demo --configuration=production && npx serve dist/projects/apps/updated-demo/browser -s",
"test": "ng test @ngbracket/ngx-layout",
"test:ssr": "ng run @ngbracket/ngx-layout:test-ssr",
"lint": "stylelint projects/libs/**/*.scss --config=stylelint-config.json",
"release": "npm run build && npm run stamp",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"serve:ssr:universal-demo-app": "node dist/universal-demo-app/server/server.mjs",
"format": "prettier --write \"**/*.{ts,js,json,html,scss,css}\" --ignore-path .gitignore",
"format:write": "prettier --write \"**/*.{ts,js,json,html,scss,css}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,js,json,html,scss,css}\" --ignore-path .gitignore",
"update": "ng update",
"help": "ng help"
},
"private": true,
"requiredAngularVersion": ">=22.0.0",
"dependencies": {
"@angular/animations": "22.0.1",
"@angular/common": "22.0.1",
"@angular/compiler": "22.0.1",
"@angular/core": "22.0.1",
"@angular/forms": "22.0.1",
"@angular/material": "22.0.1",
"@angular/platform-browser": "22.0.1",
"@angular/platform-browser-dynamic": "22.0.1",
"@angular/platform-server": "22.0.1",
"@angular/router": "22.0.1",
"@angular/ssr": "22.0.1",
"@docusaurus/preset-classic": "^3.10.0",
"@mdx-js/react": "^3.1.1",
"clsx": "^2.1.1",
"express": "^4.21.2",
"prism-react-renderer": "^2.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular/build": "^22.0.1",
"@angular/cdk": "22.0.1",
"@angular/cli": "22.0.1",
"@angular/compiler-cli": "22.0.1",
"@angular/language-service": "22.0.1",
"@docusaurus/module-type-aliases": "^3.10.0",
"@docusaurus/tsconfig": "^3.10.1",
"@docusaurus/types": "^3.8.1",
"@types/express": "^4.17.25",
"@types/node": "^20.19.25",
"angular-eslint": "22.0.0",
"conventional-changelog": "^7.2.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "10.1.5",
"jsdom": "^29.1.1",
"ng-packagr": "22.0.0",
"postcss": "^8.5.6",
"postcss-scss": "^4.0.9",
"prettier": "^3.6.2",
"stylelint": "^15.11.0",
"ts-node": "^10.9.2",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vitest": "^4.1.8"
},
"overrides": {
"webpack": "5.107.2",
"browser-sync-client": "2.29.3",
"serialize-javascript": "7.0.5",
"uuid": "11.1.1"
},
"volta": {
"node": "24.15.0"
}
}