forked from collabute/ossdotnow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "shadcn-ui-monorepo",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "dotenv -- turbo run build",
"dev": "dotenv -- turbo run dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,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": {
"@workspace/eslint-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"dotenv-cli": "^8.0.0",
"eslint": "^9.29.0",
"prettier": "^3.5.3",
"prettier-plugin-sort-imports": "^1.8.8",
"prettier-plugin-tailwindcss": "^0.6.13",
"turbo": "^2.5.4",
"typescript": "5.8.3"
},
"engines": {
"bun": ">=1.2.13"
},
"packageManager": "bun@1.2.13",
"workspaces": [
"apps/*",
"packages/*"
],
"trustedDependencies": [
"@tailwindcss/oxide",
"core-js-pure"
]
}