-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
{
"name": "dalgo-webapp",
"version": "2.2.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open",
"cy:run": "cypress run",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "husky",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\" \"cypress/**/*.{js,jsx,ts,tsx}\"",
"format:write": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\" \"cypress/**/*.{js,jsx,ts,tsx}\" && git add ."
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.8",
"@dagrejs/dagre": "^1.1.4",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "5.16.8",
"@mui/material": "^5.16.6",
"@mui/x-date-pickers": "^6.20.1",
"@sentry/nextjs": "8.41.0",
"@superset-ui/embedded-sdk": "^0.1.2",
"@tanstack/react-table": "^8.20.5",
"@types/d3": "^7.4.2",
"@types/react-resizable": "^3.0.8",
"ag-grid-react": "^31.2.1",
"cronstrue": "^2.51.0",
"d3": "^7.8.5",
"eslint": "8.57.1",
"eslint-config-next": "^14.2.18",
"mock-socket": "^9.3.1",
"moment": "^2.30.1",
"next": "^14.2.21",
"next-auth": "^4.24.10",
"react": "^18.3.1",
"react-arborist": "^3.4.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.2",
"react-joyride": "^2.9.0",
"react-markdown": "^9.0.1",
"react-papaparse": "^4.4.0",
"react-resizable": "^3.0.5",
"react-use-websocket": "^4.10.0",
"reactflow": "^11.11.4",
"remark-gfm": "^4.0.0",
"superset-ui": "^0.0.0-1",
"swr": "^2.2.4",
"typescript": "5.7.2",
"use-resize-observer": "^9.1.0"
},
"resolutions": {
"string-width": "^4.2.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.12",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"cypress": "^13.10.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=18.17.0"
}
}