-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 930 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "km46-backend",
"private": false,
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "turbo dev",
"build": "turbo 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": {
"@medusajs/eslint-plugin": "2.16.0",
"eslint": "^9.39.4",
"jiti": "^2.7.0",
"prettier": "^3.2.5",
"turbo": "^2.0.14",
"ajv": "^8.13.0"
},
"workspaces": [
"apps/**",
"!apps/backend/.medusa/**"
],
"overrides": {
"eslint": {
"ajv": "^6.12.4"
},
"@eslint/eslintrc": {
"ajv": "^6.12.4"
}
}
}