-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 904 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
33
34
{
"name": "boxbook",
"private": true,
"version": "1.0.0",
"description": "",
"workspaces": [
"backend",
"frontend"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build --workspace=frontend",
"start:app": "npm run dev --workspace=frontend",
"start:api": "npm run dev --workspace=backend",
"dev": "start npm run start:api && start npm run start:app",
"start": "npm run build && npm run start:api"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@libsql/client": "^0.14.0",
"@prisma/client": "^6.2.1",
"@uidotdev/usehooks": "^2.4.1",
"bootstrap": "^5.1.3",
"prisma": "^6.2.1",
"react-debounce-input": "^3.3.0",
"react-icons": "^5.4.0",
"react-router-dom": "^6.26.2",
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2"
}
}