-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 866 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 866 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
26
27
28
29
30
31
32
{
"name": "reca-workspace",
"version": "2.0.23",
"type": "module",
"private": "true",
"scripts": {
"build": "npm run build -w packages/reca",
"lint": "npm run lint -w packages/reca",
"release": "npm run release -w packages/reca && standard-version",
"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.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@labeg/code-style": "^6.10.19",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"rimraf": "^6.1.2",
"standard-version": "^9.5.0",
"npm-check-updates": "^19.3.2"
}
}