-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
103 lines (103 loc) · 3.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "boyka-framework",
"version": "2.3.1",
"description": "Ultimate Automation framework to handle automation of Web, Mobile and API applications.",
"type": "module",
"author": {
"name": "Wasiq Bhamla",
"email": "[email protected]"
},
"contributors": [
{
"name": "Wasiq Bhamla",
"email": "[email protected]"
},
{
"name": "Mohammad Faisal Khatri",
"email": "[email protected]"
}
],
"homepage": "https://github.com/BoykaFramework/boyka-framework",
"bugs": {
"url": "https://github.com/BoykaFramework/boyka-framework/issues"
},
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"website"
],
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.3",
"@lerna/child-process": "^7.4.2",
"@release-it-plugins/lerna-changelog": "^7.0.0",
"@stylistic/eslint-plugin-js": "^2.11.0",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"commitlint": "^19.6.0",
"eslint": "^9.15.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.0",
"lerna": "8.1.9",
"lerna-changelog": "^2.2.0",
"lerna-version": "^6.6.2",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"nx": "^20.1.2",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"release-it": "^17.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "husky",
"build:site": "pnpm -r --filter=\"./website\" build",
"start:site": "pnpm -r --filter=\"./website\" start",
"deploy:site": "pnpm -r --filter=\"./website\" deploy",
"clear:website": "pnpm -r --filter=\"./website\" clear",
"lint": "eslint --report-unused-disable-directives",
"lint:ci": "pnpm lint --quiet",
"format": "prettier --check .",
"format-fix": "prettier --write .",
"beta": "pnpm release --preRelease=beta",
"release": "release-it --ci",
"release:major": "pnpm release major",
"release:minor": "pnpm release minor",
"release:patch": "pnpm release patch",
"release:premajor": "pnpm beta premajor",
"release:preminor": "pnpm beta preminor",
"release:prepatch": "pnpm beta prepatch",
"check-deps": "mvn -f core-java/pom.xml versions:display-dependency-updates",
"check-plugin-deps": "mvn -f core-java/pom.xml versions:display-plugin-updates"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"pnpm lint",
"pnpm format-fix",
"pnpm format"
],
"**/*.{js,jsx}": [
"pnpm lint",
"pnpm format-fix",
"pnpm format"
]
},
"packageManager": "[email protected]"
}