-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.29 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.29 KB
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
{
"name": "root",
"private": true,
"author": {
"name": "Alessandro Casazza",
"email": "alessandro@commercelayer.io"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm -r build",
"prepare": "husky",
"test": "pnpm -r test",
"docs:dev": "pnpm --filter docs storybook",
"docs:build": "pnpm --filter docs build-storybook",
"components:build:dev": "pnpm --filter react-components build:dev",
"components:build": "pnpm --filter react-components build",
"make:version": "lerna version --no-private",
"make:version:force": "lerna version --no-private --force-publish",
"dep:major": "pnpm dlx npm-check-updates --packageFile '**/package.json' -u -i",
"dep:minor": "pnpm dep:major -t minor -i",
"clean": "pnpm dlx rimraf --glob **/node_modules **/pnpm-lock.yaml"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"husky": "^9.1.7",
"lerna": "^9.0.7",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"tar": "^7.5.11",
"rollup": "^4.59.0",
"minimatch@<3.1.4": "^3.1.4",
"minimatch@>=5.0.0 <5.1.8": "^5.1.8",
"minimatch@>=9.0.0 <9.0.7": "^9.0.7",
"minimatch@>=10.0.0 <10.2.3": "^10.2.3",
"ajv@>=7.0.0-alpha.0 <8.18.0": "^8.18.0",
"esbuild@<=0.24.2": "^0.25.0"
}
}
}