-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "@objectstack/example-msw-react-crud",
"version": "1.0.1",
"description": "Complete MSW integration example with React CRUD components using ObjectStack Client",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@objectstack/client": "workspace:*",
"@objectstack/driver-memory": "workspace:*",
"@objectstack/example-todo": "workspace:*",
"@objectstack/plugin-msw": "^0.4.1",
"@objectstack/runtime": "^0.4.1",
"@objectstack/spec": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.23",
"msw": "^2.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.0.0",
"vite": "^5.4.11"
},
"msw": {
"workerDirectory": [
"public"
]
}
}