-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
{
"name": "modjo-dev",
"version": "1.9.0",
"description": "Modjo Framework for RAD",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*",
"plugins/*",
"microservices/*"
],
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^7",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.4",
"lint-staged": "^11.1.2",
"prettier": "^2.5.1",
"standard-version": "^9.3.2"
},
"scripts": {
"precommit": "lint-staged",
"prepare": "husky install",
"lint": "eslint .",
"release": "standard-version",
"retag": "git tag -f $(git describe --tags $(git rev-list --tags --max-count=1) | cut -d '.' -f 1)",
"push": "git push -f --follow-tags origin master",
"delivery": "yarn release && yarn push && yarn publish:all",
"publish:all": "yarn workspaces foreach --no-private --parallel npm publish --tolerate-republish"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"standard-version": {
"scripts": {
"posttag": "yarn retag"
}
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"resolutions": {
"postgres@^3.4.4": "patch:postgres@npm%3A3.4.4#./.yarn/patches/postgres-npm-3.4.4-90e4c53e1e.patch"
}
}