-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.55 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
{
"name": "react-filter-component",
"private": true,
"author": "[email protected]",
"description": "react filter expressions input component monorepo",
"keywords": [
"react",
"react component",
"react filter expressions component",
"react query builder component",
"typescript",
"javascript",
"pnpm"
],
"homepage": "https://reactfilter.icodex.me",
"bugs": "https://github.com/wood3n/react-filter-component/issues",
"repository": {
"type": "git",
"url": "https://github.com/wood3n/react-filter-component"
},
"scripts": {
"prepare": "is-ci || husky install",
"preinstall": "npx only-allow pnpm",
"dev": "pnpm --filter @react-filter/core run dev",
"dev:antd": "pnpm --filter @react-filter/antd run dev",
"dev:website": "pnpm --filter website run dev",
"build": "pnpm --filter \"./packages/**\" run build",
"build:antd": "pnpm --filter @react-filter/antd run build",
"build:website": "pnpm --filter website run build",
"ci:publish": "pnpm publish -r",
"lint-fix": "eslint --fix --ext .js,.jsx,.ts,.tsx . && stylelint \"**/*.{css,less}\" --fix",
"prettier": "prettier . --write",
"cm": "cz",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@types/node": "^20.10.4",
"@types/react": "^17.0.69",
"@types/react-dom": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"semantic-release": "^23.0.2",
"semantic-release-monorepo": "^8.0.2",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.0.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": "prettier --write",
"*.css": "stylelint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}