-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
38 lines (38 loc) · 967 Bytes
/
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
{
"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:watch": "pnpm -r test:watch",
"test:e2e": "pnpm -r test:e2e",
"dep:major": "pnpm dlx npm-check-updates --packageFile '**/package.json' -u",
"dep:minor": "pnpm dep:major -t minor"
},
"keywords": [],
"author": {
"name": "Giuseppe Ciotola",
"email": "giuseppe@commercelayer.io"
},
"repository": {
"type": "git",
"url": "https://github.com/commercelayer/monorepo-starter.git"
},
"license": "MIT",
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"workspaces": ["packages/*"],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.4.3",
"npm-check-updates": "^17.1.14"
}
}