-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 903 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
{
"name": "ratelit",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"server:start": "bun --cwd packages/server start",
"mobile:start": "bun --cwd packages/mobile start",
"mobile:ios": "bun --cwd packages/mobile ios",
"clean": "find . -type dir -name node_modules | xargs rm -rf",
"db:migrate": "bun --cwd packages/server prisma:migrate",
"db:push": "bun --cwd packages/server prisma:push",
"db:format": "bun --cwd packages/server prisma:format",
"db:validate": "bun --cwd packages/server prisma:validate",
"db:gen": "bun --cwd packages/server prisma:generate",
"relay": "bun --cwd packages/mobile relay",
"gql:gen": "bun --cwd packages/mobile gqlgen"
},
"relay": {
"src": "./packages/mobile",
"schema": "./packages/mobile/schema/schema.graphql",
"language": "typescript"
},
"dependencies": {
"zod": "^3.22.4"
}
}