-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.05 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.05 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
{
"name": "harder-labs-vendure-plugins",
"private": true,
"description": "Vendure plugins maintained by Harder Labs (Hill Country Gear, Stellar Arcade). Modeled on the Pinelab monorepo: yarn workspaces + Lerna independent versioning, per-package CI, _template for new packages.",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --concurrency 1",
"test": "lerna run test --concurrency 1",
"lint": "echo '❌ Lint per package: cd packages/<name> && yarn lint' && exit 1",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"upgrade:vendure": "lerna exec --concurrency 1 \"yarn upgrade --pattern @vendure --latest\""
},
"devDependencies": {
"@swc/core": "^1.15.33",
"@vendure/core": "3.6.3",
"@vendure/email-plugin": "3.6.3",
"@vendure/testing": "3.6.3",
"lerna": "8.1.9",
"prettier": "3.3.3",
"rimraf": "5.0.5",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"unplugin-swc": "^1.5.9",
"vitest": "1.6.0"
},
"packageManager": "yarn@1.22.22"
}