-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.74 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.74 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
{
"type": "module",
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@sentry/react": "^10.33.0",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-virtual": "^3.13.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^14.0.3",
"d3": "^7.9.0",
"downshift": "^9.0.13",
"es-toolkit": "^1.44.0",
"express": "^5.2.1",
"fuse.js": "^7.1.0",
"history": "^5.3.0",
"lucide-react": "^0.563.0",
"marked": "^17.0.1",
"minimist": "^1.2.8",
"numbro": "^2.5.0",
"radix-ui": "^1.4.3",
"react": "^19.2.3",
"react-dom": "^19.2.4",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.71.1",
"semver": "^7.7.4",
"styled-components": "^6.1.13",
"superagent": "^8.0.9",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"winston": "^3.19.0",
"wouter": "^3.9.0",
"zod": "^4.3.5",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@faker-js/faker": "^10.2.0",
"@sentry/vite-plugin": "^4.6.1",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-links": "^10.2.0",
"@storybook/react-vite": "^10.2.11",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/d3": "^7.4.3",
"@types/express": "^5.0.6",
"@types/styled-components": "^5.1.34",
"@types/superagent": "^8.1.9",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/eslint-plugin": "^1.6.7",
"babel-plugin-react-compiler": "^1.0.0",
"baseline-browser-mapping": "^2.9.15",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "10.2.0",
"globals": "^17.3.0",
"jsdom": "^27.4.0",
"nock": "^13.5.5",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"storybook": "^10.1.11",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"scripts": {
"build": "vite build",
"build-storybook": "storybook build",
"check-version": "npx tsx src/server/check-version.ts",
"develop": "vite serve",
"eslint": "eslint src",
"format": "prettier -w --cache .",
"server": "npx tsx src/server/run.ts",
"storybook": "storybook dev -p 6006",
"test": "TZ=UTC vitest",
"typecheck": "tsc --noEmit"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
],
"tabWidth": 4
},
"virtool": {
"minApiVersion": "33.3.0"
}
}