-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.33 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.33 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
{
"name": "@signality/source",
"version": "0.0.0",
"license": "MIT",
"private": true,
"description": "Signal-first utility collection for Angular",
"homepage": "https://signality.dev",
"repository": {
"type": "git",
"url": "https://github.com/signalityjs/signality.git"
},
"keywords": [
"angular",
"signals",
"utilities",
"reactive",
"typescript",
"ssr"
],
"bugs": "https://github.com/signalityjs/signality/issues",
"maintainers": [
"Vyacheslav Borodin <vs-borodin@proton.me>"
],
"scripts": {
"prepare": "husky",
"build": "npx nx run-many -t build --all --exclude=demos",
"lint": "eslint .",
"prettier": "prettier --check projects --cache",
"test": "nx run-many -t test --all",
"docs:dev": "pnpm demos:build && node scripts/watch-docs.js && vitepress dev projects/docs",
"docs:build": "pnpm demos:build && vitepress build projects/docs",
"demos:dev": "nx serve demos",
"demos:build": "nx run demos:buildElements --configuration=production",
"demos:watch": "nx watch --projects=demos -- nx run demos:buildElements --configuration=development",
"ci:publish": "nx release publish --access public"
},
"packageManager": "pnpm@9.12.0",
"engines": {
"pnpm": ">=9.12.0",
"node": ">=20.19.0",
"npm": "Please use pnpm instead of NPM to install dependencies. See: https://pnpm.io/"
},
"lint-staged": {
"*.{js,ts,css,scss}": [
"prettier --write"
]
},
"devDependencies": {
"@angular-devkit/build-angular": "20.3.21",
"@angular-devkit/schematics": "20.3.13",
"@angular/animations": "20.3.15",
"@angular/cdk": "20.2.13",
"@angular/common": "20.3.15",
"@angular/compiler": "20.3.18",
"@angular/compiler-cli": "20.3.15",
"@angular/core": "20.3.18",
"@angular/elements": "20.3.15",
"@angular/forms": "20.3.15",
"@angular/platform-browser": "20.3.15",
"@angular/platform-browser-dynamic": "20.3.15",
"@angular/platform-server": "20.3.15",
"@angular/router": "20.3.15",
"@angular/ssr": "20.3.21",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@nx/angular": "20.8.1",
"@nx/devkit": "20.8.1",
"@nx/eslint": "20.8.1",
"@nx/eslint-plugin": "20.8.1",
"@nx/jest": "20.8.1",
"@nx/js": "20.8.1",
"@nx/vite": "20.8.1",
"@nx/web": "20.8.1",
"@nx/workspace": "20.8.1",
"@schematics/angular": "20.3.13",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.29",
"@swc/helpers": "0.5.17",
"@tailwindcss/vite": "4.1.18",
"@types/express": "^5.0.6",
"@types/jest": "30.0.0",
"@types/node": "24.0.13",
"@types/react": "18.3.1",
"@types/yargs": "17.0.33",
"@typescript-eslint/utils": "8.31.0",
"angular-eslint": "19.3.0",
"eslint": "9.26.0",
"eslint-config-prettier": "10.1.2",
"express": "5.1.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-fixed-jsdom": "0.0.11",
"jest-preset-angular": "14.6.2",
"jsonc-eslint-parser": "2.4.0",
"lint-staged": "16.1.2",
"ng-packagr": "19.2.2",
"nx": "20.8.1",
"prettier": "2.8.8",
"rxjs": "7.8.1",
"shiki": "1.22.2",
"tailwindcss": "4.1.18",
"ts-node": "10.9.1",
"tslib": "2.8.1",
"tsx": "4.20.3",
"typescript": "5.8.3",
"vitepress": "2.0.0-alpha.15",
"vue": "3.5.26",
"zone.js": "0.15.0"
}
}