-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.04 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"name": "my-turborepo",
"version": "0.0.0",
"private": true,
"description": "",
"author": "",
"license": "UNLICENSED",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dev:web": "turbo run dev --filter ui --filter web",
"dev:api": "turbo run dev --filter ui --filter api",
"dev:both": "turbo run dev --filter ui --filter api --filter web",
"dev:ui": "turbo run dev --filter ui --filter storybook",
"ui:add": "pnpm --filter ui ui:add",
"clean": "rm -rf .turbo && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && find . -name '.next' -type d -prune -exec rm -rf '{}' + && rm -f package-lock.json + && pnpm install"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"turbo": "^2.0.11"
},
"packageManager": "pnpm@8.15.5",
"engines": {
"node": ">=18"
}
}