forked from shopware/frontends
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.79 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
{
"name": "shopware-frontends",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"templates/*",
"examples/*"
],
"scripts": {
"bump": "changeset version",
"changeset": "changeset",
"build": "dotenv -- turbo run build ",
"generate": "turbo run generate",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"test:bench": "turbo run test:bench -- --run",
"test:e2e": "turbo run test:e2e",
"format": "prettier --write \"**/*.{ts,tsx,md,vue}\"",
"version": "changeset version",
"postversion": "pnpm run versionReadme",
"versionReadme": "pnpx ts-node scripts/addChangelogBodyToReadmeFile.ts",
"taze": "taze major -wr",
"prepare": "husky",
"generateDependencyChangelog": "esno ./scripts/generateDependencyChangelog.ts"
},
"devDependencies": {
"@biomejs/biome": "1.6.3",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@microsoft/api-documenter": "7.24.1",
"@microsoft/api-extractor": "7.43.0",
"@microsoft/tsdoc": "0.14.2",
"@types/changelog-parser": "2.8.4",
"changelog-parser": "3.0.1",
"dotenv-cli": "7.4.1",
"esno": "4.7.0",
"globby": "14.0.1",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"taze": "0.13.3",
"turbo": "1.13.2",
"typedoc": "0.25.12",
"vercel": "33.7.0"
},
"engines": {
"node": "^18.17.x || ^20.x"
},
"lint-staged": {
"*.{ts,tsx,md,mdx,js,jsx,vue}": [
"prettier --write"
]
},
"packageManager": "pnpm@8.15.3",
"pnpm": {
"overrides": {
"@antfu/utils": "^0.7.7",
"@babel/traverse": "^7.23.9",
"@types/node": "^20",
"debug": "^4.3.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",
"postcss": "^8.4.35",
"semver": "^7.6.0",
"sharp": "^0.33.2",
"socks": "^2.8.1",
"undici": "^5.28.4",
"vite@4>docs": "^4.5.3",
"vite@5": "^5.2.6",
"yaml@2": "^2.3.4",
"zod": "^3.22.4"
},
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"vite",
"react-dom"
]
},
"patchedDependencies": {
"@changesets/apply-release-plan@6.1.3": "patches/@changesets__apply-release-plan@6.1.3.patch",
"@changesets/apply-release-plan@6.1.4": "patches/@changesets__apply-release-plan@6.1.4.patch",
"@changesets/apply-release-plan@7.0.0": "patches/@changesets__apply-release-plan@7.0.0.patch"
},
"allowNonAppliedPatches": true,
"auditConfig": {
"ignoreCves": [
"CVE-2023-26115",
"CVE-2023-45857",
"CVE-2024-31207"
]
}
}
}