-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "pnpm -r dev",
"build": "pnpm -r build",
"preview": "pnpm -r preview",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"test": "pnpm -r test",
"test:e2e": "pnpm -r test:e2e",
"dep:upgrade:major": "pnpm -r exec npm-check-updates -u",
"dep:upgrade:minor": "pnpm dep:upgrade:major -t minor",
"dep:self-upgrade:major": "pnpm exec npm-check-updates -u",
"dep:self-upgrade:minor": "pnpm dep:self-upgrade:major -t minor"
},
"keywords": [],
"author": {
"name": "Matteo Alessani",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/commercelayer/monorepo-starter.git"
},
"license": "MIT",
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^8.1.8",
"npm-check-updates": "^17.1.3"
},
"resolutions": {
"braces": "^3.0.3",
"axios": ">=1.7.4",
"micromatch": ">=4.0.8"
}
}