-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 2.25 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
55
56
57
58
59
60
{
"name": "alwatr-monorepo",
"description": "Alwatr Ecosystem",
"repository": "https://github.com/Alwatr/alwatr",
"author": "S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)",
"license": "AGPL-3.0-only",
"type": "module",
"private": true,
"engines": {
"node": ">=18.16.0",
"yarn": ">=4.0.0"
},
"workspaces": [
"packages/*"
],
"prettier": "@alwatr/prettier-config",
"scripts": {
"b": "yarn run build",
"c": "yarn run clean",
"cb": "yarn run clean && yarn run build",
"l": "yarn run lint",
"f": "yarn run format",
"rl": "yarn run pull && yarn run clean && yarn run build && yarn run lint && yarn run release",
"upd": "yarn set version latest; yarn up '*'; yarn up '*' -R; yarn dlx @yarnpkg/sdks vscode; yarn dedupe",
"lint": "yarn run lint:ts && yarn run lint:es",
"lint:es": "eslint . --config .eslintrc.json --ext .ts --ignore-path .prettierignore",
"lint:ts": "lerna run build:ts",
"build": "lerna run build",
"watch": "lerna run --parallel watch",
"format": "yarn run format:prettier && yarn run format:eslint",
"format:eslint": "yarn run lint:es --fix",
"format:prettier": "prettier . --ignore-path .prettierignore --write",
"clean": "git add -v . && git clean -d -x -f --exclude=node_modules --exclude='*.env' --exclude=_data --exclude='.pnp*' --exclude=.yarn",
"pull": "git pull",
"release": "lerna version",
"publish": "lerna publish from-package"
},
"devDependencies": {
"@alwatr/eslint-config": "^1.2.11",
"@alwatr/prettier-config": "^1.0.6",
"@alwatr/tsconfig-base": "^1.3.3",
"@lerna-lite/changed": "^3.10.0",
"@lerna-lite/cli": "^3.10.0",
"@lerna-lite/diff": "^3.10.0",
"@lerna-lite/exec": "^3.10.0",
"@lerna-lite/publish": "^3.10.0",
"@lerna-lite/run": "^3.10.0",
"@lerna-lite/version": "^3.10.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-require-extensions": "^0.1.3",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}