-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1011 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1011 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
35
36
37
38
39
{
"name": "web",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"packages/*",
"packages/client/*"
],
"scripts": {
"dev:web": "npm --workspace web run dev",
"dev:backend": "npm --workspace backend run dev",
"dev:mobile": "npm --workspace mobile run start",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:web\"",
"dev:migrate:prisma": "npx prisma migrate dev --schema=./prisma/schema.prisma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devrel-labs/Qibits.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/devrel-labs/Qibits/issues"
},
"homepage": "https://github.com/devrel-labs/Qibits#readme",
"dependencies": {
"@prisma/client": "^6.15.0",
"@types/dotenv": "^6.1.1",
"dotenv": "^17.2.2",
"prisma": "^6.15.0",
"ws": "^8.18.3"
},
"devDependencies": {
"concurrently": "^9.2.1",
"typescript": "^5.9.2"
}
}