forked from shopware/frontends
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "shopware-frontends",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"templates/*",
"examples/*"
],
"scripts": {
"bump": "changeset version",
"changeset": "changeset",
"build": "turbo run build",
"generate": "turbo run generate",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"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"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@types/changelog-parser": "^2.8.1",
"changelog-parser": "^3.0.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"turbo": "^1.8.2",
"vercel": "^28.16.7"
},
"engines": {
"node": "^16.x || ^18.x"
},
"lint-staged": {
"*.{ts,tsx,md,mdx,js,jsx,vue}": [
"prettier --write"
]
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"vite",
"react-dom"
]
},
"patchedDependencies": {
"@changesets/[email protected]": "patches/@[email protected]"
},
"allowNonAppliedPatches": true
}
}