-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.84 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
61
62
{
"name": "hybrid-core",
"description": "",
"author": "S. MohammadMahdi Zamanian <[email protected]> (https://mm25zamanian.ir)",
"license": "MIT",
"type": "module",
"private": true,
"keywords": [
"nodejs",
"framework",
"high-performance",
"scalable",
"maintainable",
"development-tools",
"data-validation",
"error-handling",
"logging",
"developer-friendly",
"gecut"
],
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"lint": "run-s 'lint:*'",
"lint:ts": "eslint --config .eslintrc.json --ignore-path .gitignore --ext .ts '.'",
"build": "run-s build:ts build:r",
"build:ts": "tsc --build",
"build:r": "lerna run build",
"format": "run-s format:prettier format:eslint",
"format:eslint": "bun run lint:ts --fix",
"format:prettier": "prettier . --ignore-path .prettierignore --write",
"clean": "git clean -d -x -f --exclude=node_modules --exclude='*.env' --exclude=_data --exclude='.pnp*'",
"serve": "wds",
"watch": "run-p 'watch:*' serve",
"watch:ts": "bun run build:ts --watch --preserveWatchOutput",
"pull": "git pull",
"release": "lerna version",
"publish": "lerna publish from-package"
},
"devDependencies": {
"@lerna-lite/changed": "^3.9.1",
"@lerna-lite/cli": "^3.9.1",
"@lerna-lite/diff": "^3.9.1",
"@lerna-lite/exec": "^3.9.1",
"@lerna-lite/publish": "^3.9.1",
"@lerna-lite/run": "^3.9.1",
"@lerna-lite/version": "^3.9.1",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@web/dev-server": "^0.4.6",
"eslint": "^8.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.3.3",
"@types/bun": "latest"
}
}