forked from GovAlta/ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.65 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.65 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
{
"name": "@abgov/ui-components",
"version": "0.0.0",
"license": "Apache-2.0",
"scripts": {
"serve:web": "nx run web:serve:development",
"serve:react": "nx run react:serve:development",
"serve:angular": "nx run angular:serve:development",
"svelte:watch": "vite build --watch libs/web-components",
"build": "nx affected --base=alpha -t build --exclude=angular --exclude=react --exclude=web",
"build:vscode-doc": "node libs/web-components/custom-element-manifest-analyze.js",
"test": "vitest",
"lint": "nx run-many --target=lint --exclude=angular --exclude=react --exclude=web",
"validate": "npm run build && npm run lint && vitest --run",
"dev:web": "(npm run serve:web & npm run svelte:watch)",
"dev:react": "(npm run serve:react & npm run svelte:watch)",
"dev:angular": "(npm run serve:angular & npm run svelte:watch)"
},
"private": true,
"devDependencies": {
"@abgov/design-tokens": "^1.1.1",
"@abgov/nx-release": "8.0.0",
"@angular-devkit/build-angular": "17.3.6",
"@angular-devkit/core": "17.1.2",
"@angular-devkit/schematics": "17.1.2",
"@angular-eslint/eslint-plugin": "~17.0.0",
"@angular-eslint/eslint-plugin-template": "~17.0.0",
"@angular-eslint/template-parser": "~17.0.0",
"@angular/cli": "~17.1.0",
"@angular/compiler-cli": "17.1.2",
"@angular/language-service": "17.1.2",
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@faker-js/faker": "^8.3.1",
"@nx/angular": "18.0.1",
"@nx/eslint": "18.0.1",
"@nx/eslint-plugin": "18.0.1",
"@nx/js": "18.0.1",
"@nx/react": "18.0.1",
"@nx/vite": "18.0.1",
"@nx/web": "18.0.1",
"@nx/workspace": "18.0.1",
"@schematics/angular": "17.1.2",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@swc-node/register": "~1.6.7",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.3.85",
"@testing-library/react": "14.0.0",
"@testing-library/svelte": "^4.0.5",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^18.16.9",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "1.2.2",
"@vitest/ui": "1.2.2",
"autoprefixer": "^10.4.16",
"eslint": "~8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"glob": "^10.3.10",
"jsdom": "~22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"ng-packagr": "17.1.2",
"nx": "18.0.1",
"postcss": "^8.4.5",
"postcss-import": "~14.1.0",
"postcss-preset-env": "~7.5.0",
"postcss-replace": "^2.0.1",
"postcss-url": "~10.1.3",
"prettier": "^3.2.0",
"prettier-plugin-svelte": "^3.1.2",
"rollup": "^4.9.6",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"swc-loader": "0.1.15",
"typescript": "5.3.3",
"vite": "^5.1.7",
"vite-plugin-dts": "~3.7.2",
"vitest": "1.2.2",
"vitest-dom": "^0.1.1"
},
"dependencies": {
"@angular/animations": "17.1.2",
"@angular/common": "17.1.2",
"@angular/compiler": "17.1.2",
"@angular/core": "17.1.2",
"@angular/forms": "17.1.2",
"@angular/platform-browser": "17.1.2",
"@angular/platform-browser-dynamic": "17.1.2",
"@angular/router": "17.1.2",
"@swc/helpers": "~0.5.2",
"date-fns": "^3.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.11.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "0.14.3"
}
}