-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.7 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
{
"name": "gastly",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@8.6.2",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"clean": "rm -rf dist/"
},
"dependencies": {
"@codemirror/language": "^6.8.0",
"@codemirror/legacy-modes": "^6.3.2",
"@codemirror/view": "^6.13.2",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.3",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.5",
"@mui/system": "^5.13.5",
"@textea/json-viewer": "^3.0.0",
"@uiw/react-codemirror": "^4.21.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/brotli": "^1.3.1",
"@types/codemirror": "^5.60.8",
"@types/dedent": "^0.7.0",
"@types/jest": "^29.5.2",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/ui": "^0.32.2",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"jsdom": "^22.1.0",
"netlify-cli": "^15.6.0",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vitest": "^0.32.2"
}
}