-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "sicap",
"version": "0.2.0",
"description": "Motor de cautare pentru achizitii publice",
"workspaces": [
"apps/*",
"packages/*",
"internal/*"
],
"private": true,
"scripts": {
"build": "dotenv -- turbo build",
"dev": "dotenv -- turbo dev",
"start": "dotenv -- turbo start",
"lint": "turbo lint",
"typecheck": "pnpm turbo typecheck",
"clean": "pnpm dlx rimraf .next .turbo .vercel && turbo clean",
"fmt": "turbo fmt",
"ui:add": "pnpm --filter ui ui:add",
"db:generate": "pnpm with-env turbo run --filter=@sicap/web db:generate",
"db:migrate": "pnpm with-env turbo run --filter=@sicap/web db:migrate",
"db:studio": "pnpm with-env turbo run --filter=@sicap/web db:studio",
"db:dev": "turso dev --db-file=devdb",
"db:dev:clean": "rm devdb*",
"with-env": "dotenv -e .env --",
"sitemap": "pnpm with-env turbo --filter web sitemap"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@sicap/tsconfig": "workspace:*",
"dotenv-cli": "^7.3.0",
"turbo": "^2.0.9"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.15.1"
}
}