-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.12 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
{
"name": "thingconnect.pulse.client",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write .",
"prepare": "cd .. && husky ./thingconnect.pulse.client/.husky"
},
"dependencies": {
"@chakra-ui/react": "^3.24.2",
"@emotion/react": "^11.14.0",
"@hookform/resolvers": "^5.2.1",
"@monaco-editor/react": "^4.7.0",
"@sentry/react": "^10.11.0",
"@tanstack/react-query": "^5.84.2",
"@visx/axis": "^3.12.0",
"@visx/responsive": "^3.12.0",
"@visx/scale": "^3.12.0",
"@visx/shape": "^3.12.0",
"@visx/tooltip": "^3.12.0",
"axios": "^1.11.0",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.14",
"lodash": "^4.17.21",
"lucide-react": "^0.541.0",
"luxon": "^3.7.2",
"mixpanel-browser": "^2.70.0",
"monaco-editor": "^0.52.2",
"next-themes": "^0.4.6",
"numeral": "^2.0.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.8.1",
"zod": "^4.1.9"
},
"devDependencies": {
"@chakra-ui/cli": "^3.24.0",
"@eslint/js": "^9.33.0",
"@tanstack/eslint-plugin-query": "^5.83.1",
"@tanstack/react-query-devtools": "^5.85.5",
"@types/lodash": "^4.17.20",
"@types/luxon": "^3.7.1",
"@types/node": "^24",
"@types/numeral": "^2.0.5",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react-swc": "^4.1.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-dom": "^1.53.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"eslint-plugin-react-x": "^1.53.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.4",
"prettier": "^3.6.2",
"typescript": "~5.9.2",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}