-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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
{
"name": "polymo-builder-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"copy-examples": "cp -r examples src/polymo/builder/static/",
"build": "vite build && npm run copy-examples",
"preview": "vite preview",
"lint": "eslint builder-ui/src builder-ui/tests --ext .ts,.tsx",
"format": "biome format --write builder-ui",
"test:e2e": "playwright test",
"msw": "msw init builder-ui/public --save"
},
"dependencies": {
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-accordion": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-tabs": "^1.0.3",
"@tanstack/react-table": "^8.11.8",
"clsx": "^2.1.1",
"jotai": "^2.7.1",
"js-yaml": "^4.1.0",
"msw": "^2.5.0",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.7.0",
"@playwright/test": "^1.45.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.30",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.10"
},
"msw": {
"workerDirectory": [
"public"
]
}
}