-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.72 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.72 KB
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
40
41
42
43
44
45
46
47
48
49
{
"name": "@oshrin/root",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.28.0",
"type": "module",
"description": "Open-source, self-hosted secrets management platform for developers",
"license": "MIT",
"author": {
"name": "Malik Idrees",
"url": "https://github.com/idrsdev"
},
"repository": {
"type": "git",
"url": "https://github.com/idrsdev/oshrin.git"
},
"keywords": [
"secrets-management",
"environment-variables",
"self-hosted",
"encryption",
"developer-tools"
],
"scripts": {
"setup": "pnpm install && node scripts/setup.js",
"dev": "pnpm --filter @oshrin/shared run build && concurrently --kill-others --names \"shared,api,web\" \"pnpm --filter @oshrin/shared run dev\" \"pnpm --filter @oshrin/api run dev\" \"pnpm --filter @oshrin/web run dev\"",
"dev:api": "pnpm --filter @oshrin/api run dev",
"dev:web": "pnpm --filter @oshrin/web run dev",
"dev:shared": "pnpm --filter @oshrin/shared run dev",
"dev:db": "docker compose up postgres -d",
"dev:db:stop": "docker compose down",
"build": "pnpm --filter @oshrin/shared run build && pnpm --filter @oshrin/api --filter @oshrin/web run build",
"build:api": "pnpm --filter @oshrin/api run build",
"build:web": "pnpm --filter @oshrin/web run build",
"type-check": "pnpm --filter @oshrin/api run type-check",
"db:generate": "pnpm --filter @oshrin/api run db:generate",
"db:migrate": "pnpm --filter @oshrin/api run db:migrate",
"db:push": "pnpm --filter @oshrin/api run db:push",
"db:studio": "pnpm --filter @oshrin/api run db:studio"
},
"devDependencies": {
"concurrently": "^9.2.1"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
}
}
}