forked from BoykaFramework/boyka-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.49 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
{
"name": "boyka-framework",
"version": "0.13.0",
"description": "Ultimate Automation framework to handle automation of web, mobile and API applications.",
"author": {
"name": "Wasiq Bhamla",
"email": "wasbhamla2005@gmail.com"
},
"contributors": [
{
"name": "Wasiq Bhamla",
"email": "wasbhamla2005@gmail.com"
},
{
"name": "Mohammad Faisal Khatri",
"email": "mohammadfaisalkhatri@gmail.com"
}
],
"homepage": "/~https://github.com/BoykaFramework/boyka-framework",
"bugs": {
"url": "/~https://github.com/BoykaFramework/boyka-framework/issues"
},
"workspaces": [
"website"
],
"engines": {
"node": ">=16.15.0"
},
"license": "MIT",
"packageManager": "yarn@3.5.0",
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"commitlint": "^17.4.4",
"eslint": "^8.36.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lerna": "^6.5.1",
"lerna-changelog": "^2.2.0",
"lint-staged": "^13.2.0",
"nx": "^15.8.7",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"scripts": {
"postinstall": "husky install",
"build:site": "yarn workspace website build",
"start:site": "yarn workspace website start",
"deploy:site": "yarn workspace website deploy",
"lint": "eslint --report-unused-disable-directives \"**/*.{js,jsx,ts,tsx,mjs}\"",
"lint:ci": "yarn lint --quiet",
"format": "prettier --check .",
"format-fix": "prettier --write .",
"clear:website": "yarn workspace website clear",
"changelog": "lerna-changelog",
"prerelease": "lerna version --yes --no-git-tag-version --no-push --no-changelog --conventional-commits --conventional-prerelease --preid rc",
"release": "lerna version --yes --no-git-tag-version --no-push --no-changelog --conventional-commits --conventional-graduate"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"yarn lint",
"yarn format-fix",
"yarn format"
],
"**/*.{js,jsx}": [
"yarn lint",
"yarn format-fix",
"yarn format"
]
}
}