-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.36 KB
/
package.json
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
{
"name": "ds-project",
"private": true,
"prettier": "@ds-project/prettier",
"scripts": {
"build": "turbo run build",
"dev:engine": "turbo run dev --filter=engine --filter=@ds-project/database --filter=@ds-project/components",
"dev:widget": "turbo run dev --filter=@ds-project/figma-widget --filter=@ds-project/components",
"dev:components": "turbo run dev --filter=@ds-project/components --filter=storybook",
"clean": "turbo run clean && rm -rf node_modules",
"type-check": "turbo run type-check",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache && pnpm lint:ws -f",
"lint:ws": "pnpm dlx sherif@latest"
},
"devDependencies": {
"@ds-project/prettier": "workspace:*",
"prettier": "catalog:",
"turbo": "^2.1.2"
},
"packageManager": "pnpm@9.5.0",
"engines": {
"node": "^20"
},
"pnpm": {
"overrides": {
"@trpc/client": "11.0.0-rc.482",
"@trpc/server": "11.0.0-rc.482",
"react": "18.3.1",
"react-dom": "18.3.1",
"@ds-project/auth>react": "18.3.1"
}
}
}