forked from jsonpreet/spawnclaw
-
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) · 745 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 745 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": "spawnclaw",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@spawnclaw/web",
"dev:api": "turbo run dev --filter=@spawnclaw/api",
"build": "turbo run build",
"build:web": "turbo run build --filter=@spawnclaw/web",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"autoprefixer": "^10.4.24",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"turbo": "^2.8.3"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}