-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "mocknica",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "turbo dev",
"dev:dashboard": "turbo dev --filter=dashboard",
"dev:www": "turbo dev --filter=www",
"build": "turbo build",
"build:dashboard": "turbo build --filter=dashboard",
"build:www": "turbo build --filter=www",
"serve": "turbo serve",
"serve:dashboard": "turbo serve --filter=dashboard",
"serve:www": "turbo serve --filter=www",
"lint": "turbo lint",
"type-check": "turbo type-check",
"test": "turbo test",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push",
"db:studio": "turbo db:studio",
"db:sync": "turbo db:sync",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:db": "docker-compose up -d db",
"docker:db:down": "docker-compose down db",
"docker:rebuild": "docker-compose up -d --build"
},
"devDependencies": {
"turbo": "2.5.8"
},
"packageManager": "pnpm@8.15.0",
"engines": {
"node": ">=18"
}
}