-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 643 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 643 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
{
"name": "dtc-starter-monorepo",
"private": false,
"packageManager": "pnpm@10.11.1",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "pnpm -r dev",
"build": "pnpm -r build",
"start": "turbo start",
"lint": "turbo lint",
"test": "turbo test",
"backend:seed": "turbo seed --filter=@dtc/backend",
"backend:dev": "turbo dev --filter=@dtc/backend",
"storefront:dev": "turbo dev --filter=@dtc/storefront"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.5",
"@types/react-dom": "19.0.5"
}
},
"devDependencies": {
"turbo": "^2.0.14",
"prettier": "^3.2.5"
}
}