-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"private": true,
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"dev": "pnpm --stream -r dev",
"build:elements": "pnpm --stream --filter @commercelayer/app-elements build",
"build:abilities": "pnpm --filter docs build:abilities",
"build:docs": "pnpm --filter docs build",
"lint": "pnpm --stream -r lint",
"lint:fix": "pnpm -r lint:fix",
"test": "pnpm -r test",
"test:watch": "pnpm --stream -r test:watch",
"ts:check": "pnpm --stream -r ts:check",
"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": ">=20",
"pnpm": ">=8"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10"
}
}