forked from commercelayer/dashboard-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.04 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
42
{
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "pnpm --filter index dev",
"build:apps": "pnpm --parallel --aggregate-output --color --filter \"app-*\" build",
"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.6",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10"
},
"resolutions": {
"tar": "^6.2.1"
}
}