-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 912 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
28
29
30
31
32
{
"name": "weekday",
"private": true,
"workspaces": [
"apps/**",
"packages/**"
],
"packageManager": "bun@1.3.8",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"db:generate": "turbo run generate --filter=@weekday/db",
"db:migrate": "turbo run migrate --filter=@weekday/db",
"db:push": "turbo run push --filter=@weekday/db",
"db:studio": "turbo run studio --filter=@weekday/db",
"dev": "turbo dev",
"dev:next": "turbo dev --filter=@weekday/web",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "turbo lint"
},
"devDependencies": {
"prettier": "latest",
"turbo": "^2.3.0"
},
"dependencies": {
"dotenv-cli": "^8.0.0",
"next": "16.1.6",
"react": "19.1.1",
"react-dom": "19.1.1"
}
}