-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.9 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.9 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
{
"name": "websvfreact",
"version": "0.1.10",
"private": true,
"homepage": ".",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "echo \"No test runner configured\" && exit 0",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint && npm run format:check"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/plugin-transform-private-methods": "^7.27.1",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@monaco-editor/react": "^4.6.0",
"@mui/icons-material": "^5.16.4",
"@mui/material": "^5.16.4",
"@react-buddy/ide-toolbox": "^2.4.0",
"@react-buddy/palette-mui": "^5.0.1",
"@reduxjs/toolkit": "^1.6.2",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"axios": "^1.11.0",
"caniuse-lite": "^1.0.30001657",
"graphviz-react": "^1.2.5",
"html-react-parser": "^5.1.18",
"lz-string": "^1.5.0",
"monaco-editor": "^0.50.0",
"mousetrap": "^1.6.5",
"openai": "^4.104.0",
"re-resizable": "^6.9.1",
"react": "^17.0.2",
"react-ace": "^9.4.4",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.7",
"react-redux": "^7.2.5",
"react-router-dom": "^6.26.2",
"react-select": "^5.8.0",
"react-syntax-highlighter": "^15.6.6",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"styled-components": "^5.3.3",
"web-vitals": "^2.1.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.12",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/babel__traverse": "^7.28.0",
"@types/jest": "^27.0.2",
"@types/mousetrap": "^1.6.15",
"@types/node": "^24.3.0",
"@types/react": "^17.0.31",
"@types/react-dom": "^17.0.10",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"postcss": "^8.5.6",
"prettier": "^2.4.1",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.2",
"vite": "^7.1.4"
}
}