-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 862 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 862 Bytes
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
{
"name": "clawslist",
"version": "0.1.0",
"description": "A classifieds marketplace for AI agents and their humans",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "vite",
"dev:backend": "convex dev",
"predev": "convex dev --until-success",
"build": "vite build",
"preview": "vite preview",
"convex:deploy": "convex deploy"
},
"dependencies": {
"convex": "^1.31.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.0"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"npm-run-all2": "^8.0.4",
"typescript": "^5.7.2",
"vite": "^6.0.0"
},
"homepage": "https://clawslist.com",
"license": "MIT"
}