-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.71 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
114
115
116
117
118
119
120
121
{
"name": "@hackworthltd/primer-app",
"version": "0.2.0",
"license": "AGPL-3.0-only",
"private": true,
"sideEffects": false,
"engines": {
"node": "^18.6.0 || ^19.0 || ^20.0",
"pnpm": "^8.5"
},
"type": "module",
"scripts": {
"watch": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"generate": "orval --config ./orval.config.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes",
"format": "prettier --write ."
},
"dependencies": {
"@dicebear/collection": "^8.0.1",
"@dicebear/core": "^8.0.1",
"@hackworthltd/tidyt-wasm": "1.0.0",
"@hookform/resolvers": "^3.3.4",
"@neodrag/react": "^2.0.4",
"@orval/core": "^6.28.2",
"@tanstack/react-query": "^5.34.1",
"@tanstack/react-query-devtools": "^5.34.1",
"@types/deep-equal": "^1.0.4",
"@xyflow/react": "12.0.0-next.17",
"axios": "^1.6.8",
"deep-equal": "^2.2.3",
"fp-ts": "^2.16.5",
"history": "^5.3.0",
"re-resizable": "^6.9.16",
"react": "^18.3.1",
"react-cookie": "^7.1.4",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.4",
"react-router-dom": "^6.23.0",
"universal-cookie": "^7.1.4",
"uuid": "^9.0.1",
"zod": "^3.23.6"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@headlessui/react": "^1.7.19",
"@headlessui/tailwindcss": "^0.2.0",
"@heroicons/react": "^2.1.3",
"@storybook/addon-actions": "^8.0.9",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"chromatic": "^11.3.0",
"classnames": "^2.5.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"orval": "^6.28.2",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-load-config": "^5.1.0",
"prettier": "^3.2.5",
"storybook": "^8.0.9",
"tailwindcss": "3.4.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint-language-service": "^5.0.5",
"typescript-language-server": "^4.3.3",
"unified-language-server": "^4.0.1",
"vite": "^5.2.11",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-dts": "^3.9.0",
"vite-plugin-favicons-inject": "^2.2.0",
"vite-plugin-package-config": "^0.1.1",
"vite-plugin-svgr": "^4.2.0",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0",
"vite-tsconfig-paths": "^4.3.2",
"vscode-css-languageserver-bin": "^1.4.0",
"vscode-html-languageserver-bin": "^1.4.0",
"vscode-json-languageserver": "^1.3.4",
"yaml-language-server": "^1.14.0"
},
"pnpm": {
"auditConfig": {
"ignoreCves": [
"CVE-2022-25883",
"CVE-2023-26115"
]
},
"overrides": {
"trim@<0.0.3": ">=0.0.3",
"trim-newlines@<3.0.1": ">=3.0.1",
"glob-parent@<5.1.2": ">=5.1.2",
"d3-color@<3.1.0": ">=3.1.0",
"@joshwooding/vite-plugin-react-docgen-typescript": "0.2.1"
}
}
}