forked from analogdotnow/Analog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 885 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 885 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
{
"name": "analog",
"private": true,
"scripts": {
"build": "dotenv -- turbo run build",
"dev": "dotenv -- turbo run dev",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"format": "prettier --write \"**/*.{ts,tsx,css,md}\"",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:clean": "docker-compose down -v",
"db:generate": "turbo run db:generate",
"db:migrate": "dotenv -- turbo run db:migrate",
"db:push": "dotenv -- turbo run db:push",
"db:studio": "dotenv -- turbo run db:studio"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.5.1",
"dotenv-cli": "^8.0.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"turbo": "^2.5.5"
},
"packageManager": "bun@1.2.18",
"workspaces": ["apps/*", "packages/*", "tooling/*"]
}