-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 818 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 818 Bytes
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
{
"name": "origin-monorepo",
"private": true,
"packageManager": "pnpm@7.1.0",
"scripts": {
"dev": "pnpm --filter './packages/**' -r --parallel run dev",
"release": "pnpm --filter './packages/**' -r release",
"release:dry": "pnpm release -- -- --dry-run",
"release:publish": "git push --follow-tags origin main",
"release:exec": "pnpm -r --filter './packages/**' exec -- pnpm exec standard-version --path . -p beta --dry-run"
},
"prettier": "@app-research/origin-vue/config/prettier",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@app-research/eslint-config": "^0.1.6",
"@app-research/origin-vue": "workspace:*",
"@types/node": "^17.0.34",
"eslint": "^8.15.0",
"prettier": "^2.6.2",
"standard-version": "^9.5.0",
"typescript": "^4.6.4"
}
}