-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.83 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
53
54
{
"name": "~foundernetes",
"version": "1.7.6",
"description": "Infra Idempotence As A Framework - Monorepo for core and plugins",
"repository": "https://codeberg.org/devthefuture/foundernetes.git",
"homepage": "https://devthejo.github.io/foundernetes/",
"author": "devthejo",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"plugins/*",
"utils/*",
"libs/*",
"modules/*"
],
"packageManager": "yarn@4.0.2",
"devDependencies": {
"commit-and-tag-version": "^10.1.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"scripts": {
"lint": "eslint .",
"postinstall": "[ -d '.husky' ] && husky install || true",
"precommit": "lint-staged",
"release": "commit-and-tag-version",
"push": "git push -f --follow-tags origin master",
"delivery": "yarn release && yarn push && yarn publish:all",
"prepublish": "dev-tools/release-workspace-to-npx publish",
"publish:all": "yarn prepublish && yarn workspaces foreach -A --no-private --parallel npm publish --tolerate-republish && yarn postpublish",
"postpublish": "dev-tools/release-workspace-to-npx dev",
"dev:docs": "docsify serve docs",
"docker:foundernetes:build": "DOCKER_BUILDKIT=1 docker build -f Dockerfile -t foundernetes .",
"docker:foundernetes:run": "docker run -it -v $PWD:/workspace foundernetes",
"docker:foundernetes": "yarn docker:foundernetes:build && yarn docker:foundernetes:run"
}
}