This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.65 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
{
"name": "zio-insight-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"clean": "exec rm -Rf dist build",
"compile": "tsc -p tsconfig.build.json",
"test:compile": "tsc -p tsconfig.build-test.json",
"dev": "vite",
"dist": "vite build",
"lint": "eslint --ext ts,tsx test src ",
"lint:fix": "yarn lint --fix",
"preview": "vite preview",
"test": "vitest --run --coverage",
"test:watch": "vitest --watch",
"test:ui": "vitest --watch --ui",
"build": "yarn clean && yarn install && yarn lint && yarn compile && yarn test:compile && yarn test && yarn dist"
},
"dependencies": {
"@effect/data": "^0.11.7",
"@effect/io": "^0.19.0",
"@effect/stream": "^0.18.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@juggle/resize-observer": "^3.4.0",
"@mui/material": "^5.11.15",
"@radix-ui/react-icons": "^1.1.1",
"chart.js": "^4.0.1",
"chartjs-adapter-date-fns": "^3.0.0",
"d3": "^7.8.3",
"date-fns": "^2.29.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-grid-layout": "^1.3.4",
"react-icons": "^4.6.0",
"react-resizable": "^3.0.4",
"react-router-dom": "^6.4.3",
"usehooks-ts": "^2.9.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/d3": "^7.4.0",
"@types/node": "^18.11.7",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@types/react-grid-layout": "^1.3.2",
"@types/react-resizable": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.30.0",
"@vitest/ui": "^0.30.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint-plugin-codegen": "^0.17.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.8.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^5.0.0",
"typescript-transform-paths": "^3.4.6",
"vite": "^4.0.0",
"vite-plugin-lint": "^1.0.1",
"vite-plugin-linter": "^2.0.2",
"vite-plugin-svgr": "^2.2.2",
"vite-tsconfig-paths": "^4.0.0",
"vitest": "^0.30.0"
},
"resolutions": {
"@effect/data": "^0.11.7",
"@effect/io": "^0.19.0",
"@effect/stream": "^0.18.0"
}
}