forked from medusajs/b2b-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 716 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 716 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
{
"name": "b2b-starter",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"test:integration:http": "turbo run test:integration:http",
"test:integration:modules": "turbo run test:integration:modules",
"test:unit": "turbo run test:unit",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@medusajs/eslint-plugin": "2.18.0",
"eslint": "^9.13.0",
"jiti": "^2.7.0",
"turbo": "^2.3.3"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.5",
"@types/react-dom": "19.0.5"
}
}
}