-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
93 lines (93 loc) · 2.95 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
{
"name": "velero-ui",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "next lint",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@mantine/charts": "^7.15.1",
"@mantine/core": "^7.8.1",
"@mantine/dates": "^7.8.1",
"@mantine/form": "^7.8.1",
"@mantine/hooks": "^7.8.1",
"@mantine/modals": "^7.8.1",
"@mantine/notifications": "^7.8.1",
"@mantine/nprogress": "^7.8.1",
"@next/bundle-analyzer": "^14.1.2",
"@tabler/icons-react": "^2.47.0",
"axios": "^1.7.9",
"clsx": "^2.1.0",
"cron-validate": "^1.4.5",
"dayjs": "^1.11.10",
"js-yaml": "^4.1.0",
"mantine-contextmenu": "^7.6.1",
"mantine-datatable": "^7.6.0",
"moment": "^2.30.1",
"next": "14.1.2",
"next-auth": "^4.24.6",
"next-runtime-env": "^3.2.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-grid-heatmap": "^1.3.0",
"react-imask": "^7.5.0",
"react-json-view-lite": "^1.2.1",
"react-use-websocket": "^4.8.1",
"recharts": "2",
"socket.io-client": "^4.7.4",
"swr": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@next/eslint-plugin-next": "^14.1.2",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-styling-webpack": "^0.0.6",
"@storybook/blocks": "^7.6.17",
"@storybook/nextjs": "^7.6.17",
"@storybook/react": "^7.6.17",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4",
"@types/node": "^20.11.24",
"@types/react": "^18.2.63",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-mantine": "3.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.35",
"postcss-preset-mantine": "1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"storybook": "^7.6.17",
"storybook-dark-mode": "^3.0.3",
"ts-jest": "^29.1.2",
"typescript": "5.3.3"
},
"packageManager": "[email protected]"
}