-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.14 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
98
99
100
101
102
{
"name": "@bailo/frontend",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"cy:open": "cypress open",
"cy:run": "cypress run --spec \"cypress/e2e/bailo/**/*\"",
"start": "next start",
"lint": "eslint --max-warnings 0 actions cypress pages src types utils",
"style": "prettier --write .",
"check-style": "prettier --check .",
"test": "vitest"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@fontsource/pacifico": "^5.2.7",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@mui/icons-material": "9.0.0",
"@mui/material": "9.0.0",
"@mui/material-nextjs": "9.0.0",
"@mui/x-charts": "^9.2.0",
"@mui/x-date-pickers": "9.0.0",
"@next/mdx": "^16.2.7",
"@next/swc-linux-x64-gnu": "^16.2.6",
"@next/swc-wasm-nodejs": "16.2.7",
"@rjsf/core": "6.6.1",
"@rjsf/mui": "6.6.1",
"@rjsf/utils": "6.6.1",
"@rjsf/validator-ajv8": "6.6.1",
"@types/js-cookie": "^3.0.6",
"@uiw/react-markdown-preview": "^5.2.1",
"@uiw/react-md-editor": "^4.1.1",
"@vercel/otel": "^2.1.2",
"axios": "^1.15.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.21",
"http-status-codes": "^2.3.0",
"is-docker": "^4.0.0",
"js-cookie": "^3.0.8",
"jsonschema": "1.4.1",
"lodash-es": "^4.18.1",
"markdown-to-jsx": "^9.8.1",
"next": "16.2.7",
"notistack": "^3.0.1",
"pretty-bytes": "^7.1.0",
"randomcolor": "^0.6.2",
"react": "19.2.7",
"react-diff-viewer-continued": "4.2.2",
"react-dom": "19.2.7",
"react-to-print": "^3.3.0",
"rehype-highlight": "^7.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "4.0.1",
"semver": "^7.8.1",
"swr": "^2.4.1",
"uuid": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@next/bundle-analyzer": "^16.2.7",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "24.12.4",
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitejs/plugin-react": "^6.0.1",
"axe-core": "^4.12.0",
"cypress": "^15.16.0",
"cypress-axe": "^1.7.0",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.6",
"eslint-plugin-cypress": "^5.2.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^29.1.1",
"next-router-mock": "^1.0.5",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"optionalDependencies": {
"@next/swc-darwin-x64": "^16.2.6",
"@next/swc-darwin-arm64": "^16.2.6",
"@next/swc-linux-x64-gnu": "^16.2.6",
"@next/swc-linux-x64-musl": "^16.2.6",
"@next/swc-linux-arm64-gnu": "^16.2.6",
"@next/swc-linux-arm64-musl": "^16.2.6",
"@next/swc-win32-x64-msvc": "^16.2.6",
"@next/swc-win32-arm64-msvc": "^16.2.6"
}
}