-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.82 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
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
111
112
113
{
"name": "cloudflight",
"version": "0.8.0",
"scripts": {
"build": "nx run-many --target=build --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"lint": "nx run-many --target=lint --all --parallel && prettier --check .",
"publish-workspaces": "node ./tools/scripts/prepare.js && nx run-many --target=publish --all --parallel --skip-nx-cache",
"generate:docs": "nx run-many --target=generate-docs --all --parallel --verbose",
"postinstall": "husky",
"docs:serve": "vitepress serve apps/documentation/src"
},
"private": true,
"author": "Cloudflight GmbH",
"license": "Apache-2.0",
"keywords": [
"js-util"
],
"homepage": "https://github.com/cloudflightio/cloudflight-js-utils",
"bugs": {
"url": "https://github.com/cloudflightio/cloudflight-js-utils/issues"
},
"volta": {
"node": "20.14.0",
"yarn": "4.3.0"
},
"workspaces": [
"packages/*",
"apps/*"
],
"dependencies": {
"@angular/animations": "18.0.3",
"@angular/common": "18.0.3",
"@angular/compiler": "18.0.3",
"@angular/core": "18.0.3",
"@angular/forms": "18.0.3",
"@angular/platform-browser": "18.0.3",
"@angular/platform-browser-dynamic": "18.0.3",
"@angular/router": "18.0.3",
"@datorama/akita": "~8.0.1",
"@swc/helpers": "0.5.11",
"rxjs": "7.8.1",
"tslib": "2.6.3",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.4",
"@angular-devkit/core": "18.0.4",
"@angular-devkit/schematics": "18.0.4",
"@angular/cli": "~18.0.4",
"@angular/compiler-cli": "18.0.3",
"@angular/language-service": "18.0.3",
"@cloudflight/eslint-plugin-angular": "0.26.0",
"@cloudflight/eslint-plugin-typescript": "0.26.0",
"@cloudflight/prettier-config": "0.18.0",
"@nx/angular": "19.3.1",
"@nx/devkit": "19.3.1",
"@nx/eslint": "19.3.1",
"@nx/eslint-plugin": "19.3.1",
"@nx/jest": "19.3.1",
"@nx/js": "19.3.1",
"@nx/plugin": "19.3.1",
"@nx/vite": "19.3.1",
"@nx/web": "19.3.1",
"@nx/workspace": "19.3.1",
"@rushstack/eslint-patch": "1.10.3",
"@schematics/angular": "18.0.4",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.12",
"@swc/core": "1.6.3",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@types/node": "20.14.5",
"@vitest/coverage-istanbul": "1.6.0",
"@vitest/ui": "1.6.0",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"happy-dom": "13.10.1",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-auto-spies": "3.0.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "29.7.0",
"jest-preset-angular": "14.1.0",
"jsdom": "24.1.0",
"jsonc-eslint-parser": "2.4.0",
"lint-staged": "15.2.7",
"ng-packagr": "18.0.0",
"nx": "19.3.1",
"postcss": "8.4.38",
"postcss-import": "16.1.0",
"postcss-preset-env": "9.5.14",
"postcss-url": "10.1.3",
"prettier": "2.8.8",
"sass-loader": "14.2.1",
"symbol-observable": "4.0.0",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"typedoc": "0.24.8",
"typedoc-plugin-markdown": "4.0.0-next.12",
"typedoc-vitepress-theme": "1.0.0-next.1",
"typescript": "5.4.5",
"vite": "5.3.1",
"vite-plugin-dts": "3.9.1",
"vitepress": "1.0.0-rc.41",
"vitest": "1.6.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}