-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 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
{
"name": "reca-workspace",
"version": "2.4.11",
"type": "module",
"private": "true",
"scripts": {
"build": "npm run build -w packages/reca",
"lint": "npm run lint -w packages/reca",
"release": "cliff-jumper -n reca -p . --tag-template \"v{{new-version}}\" && npm run sync-version && npm run sync-changelog",
"sync-version": "node scripts/sync-version.js",
"sync-changelog": "node scripts/sync-changelog.js",
"test": "npm run lint -w packages/reca",
"upgrade": "ncu -u -ws --root && rimraf -g -v **/node_modules **/package-lock.json && npm i",
"prepare": "husky"
},
"lint-staged": {
"./src/**/*.(ts|tsx|js|jsx)": [
"eslint --fix"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@favware/cliff-jumper": "^6.0.0",
"@labeg/code-style": "^6.10.19",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"rimraf": "^6.1.2",
"npm-check-updates": "^19.6.5"
}
}