-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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": {
"preinstall": "npx only-allow pnpm",
"dev": "pnpm --filter index dev",
"build:apps": "pnpm --parallel --aggregate-output --color --filter \"app-*\" build",
"clean": "pnpx rimraf --glob **/node_modules **/pnpm-lock.yaml",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"test": "pnpm -r test --stream",
"ts:check": "pnpm -r ts:check",
"test:watch": "pnpm -r --parallel --aggregate-output --color test:watch",
"dep:major": "pnpm dlx npm-check-updates --packageFile '**/package.json' -u",
"dep:minor": "pnpm dep:major -t minor",
"prepare": "husky"
},
"keywords": [],
"author": {
"name": "Commerce Layer",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/commercelayer/dashboard-apps"
},
"license": "MIT",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.11"
}
}