-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
27 lines (27 loc) · 887 Bytes
/
package.json
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
{
"name": "kompanion",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"add:client": "yarn workspace client add",
"add:website": "yarn workspace website add",
"build:client": "yarn workspace client build",
"build:website": "yarn workspace website build",
"dev:client": "yarn workspace client dev",
"dev:website": "yarn workspace website dev",
"makemigration:client": "yarn workspace client prisma migrate dev --name $1",
"migrate:client": "yarn workspace client prisma migrate deploy",
"setup:all": "yarn install && yarn workspace client prisma migrate deploy && yarn workspace client prisma generate",
"start:client": "yarn workspace client start",
"fix-sharp": "yarn workspace client add sharp --ignore-engines"
},
"workspaces": [
"client",
"website"
],
"devDependencies": {
"@biomejs/biome": "^1.9.2"
}
}