-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
107 lines (107 loc) · 3.55 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "shopware-frontends",
"version": "0.0.0",
"private": true,
"workspaces": ["apps/*", "packages/*", "templates/*", "examples/*"],
"scripts": {
"bump": "changeset version",
"postinstall": "pnpm run build --filter='./packages/*'",
"changeset": "changeset",
"build": "dotenv -- turbo run build ",
"generate": "turbo run generate",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:bench": "turbo run test:bench -- --run",
"test:e2e": "turbo run test:e2e",
"format": "biome format --write .",
"version": "changeset version",
"postversion": "pnpm i && pnpm format && pnpm run versionReadme",
"versionReadme": "esno scripts/addChangelogBodyToReadmeFile.ts",
"prepare": "husky",
"generate-types": "turbo run generate-types",
"generateDependencyChangelog": "esno ./scripts/generateDependencyChangelog.ts",
"generateAutomd": "esno ./scripts/generateAutomd.ts --update",
"docs:env": "[ -d \"../developer-portal\" ] && ../developer-portal/docs-cli.cjs pull || (git clone [email protected]:shopware/developer-portal.git ../developer-portal && pnpm i -C ../developer-portal)",
"docs:link": "../developer-portal/docs-cli.cjs link --src apps/docs/src --dst frontends --symlink --keep",
"docs:preview": "../developer-portal/docs-cli.cjs preview",
"docs:cli": "../developer-portal/docs-cli.cjs"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@types/changelog-parser": "2.8.4",
"automd": "^0.3.7",
"changelog-parser": "3.0.1",
"dotenv-cli": "7.4.4",
"esno": "4.8.0",
"globby": "14.0.2",
"husky": "9.1.7",
"prettier": "3.4.2",
"turbo": "2.3.3",
"vercel": "39.1.3"
},
"engines": {
"node": "^18.17.x || ^20.x || ^22.x"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@antfu/utils": "^0.7.10",
"@babel/traverse": "^7.24.8",
"@intlify/core": "^9.14.2",
"@intlify/core-base": "^9.14.2",
"@intlify/shared": "^9.14.2",
"@sentry/browser": "^7.119.1",
"@types/node": "22.10.0",
"axios": "^1.7.4",
"braces": "^3.0.3",
"debug": "^4.3.5",
"cookie": "^0.7.0",
"cross-spawn": "^7.0.5",
"fast-loops": "^1.1.4",
"follow-redirects": "^1.15.6",
"lodash": "^4.17.21",
"lodash.pick@>=3.7.0 <4.17.19": "https://github.com/lodash/lodash/archive/f299b52f39486275a9e6483b60a410e06520c538.tar.gz",
"micromatch": "^4.0.8",
"path-to-regexp": "^8.0.0",
"postcss": "^8.4.39",
"rollup@3": "^3.29.5",
"rollup": "^4.22.4",
"semver": "^7.6.2",
"sharp": "^0.33.4",
"socks": "^2.8.3",
"tar": "^7.4.0",
"undici": "^6.19.2",
"vite@4>docs": "^4.5.3",
"vite@5": "^5.4.6",
"ws": "^8.18.0",
"yaml@2": "^2.4.5",
"zod": "^3.23.8",
"body-parser": "^1.20.3",
"dset": "^3.1.4",
"send": "^0.19.0",
"serve-static": "^1.16.1",
"express": "^4.20.1"
},
"peerDependencyRules": {
"ignoreMissing": ["webpack", "vite", "react-dom"]
},
"auditConfig": {
"ignoreCves": [
"CVE-2023-26115",
"CVE-2023-45857",
"CVE-2024-31207",
"CVE-2024-43788"
]
},
"patchedDependencies": {
"@vueuse/[email protected]": "patches/@[email protected]",
"automd": "patches/automd.patch"
}
}
}