-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "zod-playground",
"private": true,
"version": "1.0.4",
"type": "module",
"scripts": {
"dev": "vite",
"build": "rm -rf dist/ && tsc && vite build",
"preview": "vite preview",
"types": "tsc --noEmit",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:init": "playwright install --with-deps chromium firefox",
"biome:ci": "biome ci",
"biome:check": "biome check",
"biome:fix": "biome check --fix"
},
"dependencies": {
"@mantine/core": "^7.15.2",
"@mantine/hooks": "^7.15.2",
"@mantine/notifications": "^7.15.2",
"@monaco-editor/react": "^4.6.0",
"lz-string": "^1.5.0",
"monaco-editor": "^0.52.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"vite": "^5.4.11"
}
}