forked from yoloyash/overtchat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 835 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
{
"name": "overtchat",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "npm@10.9.8",
"engines": {
"node": "22.x",
"npm": "10.x"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"test:e2e": "npm run test:e2e -w apps/web --",
"test:e2e:ui": "npm run test:e2e:ui -w apps/web --",
"start": "npm run start -w apps/web --",
"db:generate": "npm run db:generate -w apps/web --",
"db:migrate": "npm run db:migrate -w apps/web --",
"db:studio": "npm run db:studio -w apps/web --",
"auth:generate": "npm run auth:generate -w apps/web --"
},
"devDependencies": {
"turbo": "^2.9.6"
},
"dependencies": {
"expo-crypto": "~56.0.3"
}
}