28 lines
679 B
JSON
28 lines
679 B
JSON
|
|
{
|
||
|
|
"name": "claw-project",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"private": true,
|
||
|
|
"workspaces": [
|
||
|
|
"client/wechat_app",
|
||
|
|
"client/web"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"dev:web": "cd client/web && npm run dev",
|
||
|
|
"build:web": "cd client/web && npm run build",
|
||
|
|
"build:wechat": "cd client/wechat_app && npm run build",
|
||
|
|
"build": "npm run build:web && npm run build:wechat"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"react": "^18.0.0",
|
||
|
|
"react-dom": "^18.0.0",
|
||
|
|
"axios": "^1.0.0"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/react": "^18.0.0",
|
||
|
|
"@types/react-dom": "^18.0.0",
|
||
|
|
"@vitejs/plugin-react": "^4.0.0",
|
||
|
|
"tailwindcss": "^3.0.0",
|
||
|
|
"typescript": "^5.0.0",
|
||
|
|
"vite": "^4.0.0"
|
||
|
|
}
|
||
|
|
}
|