-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "root",
"scripts": {
"docs": "cross-env BASE_URL=/react-multi-crop/ vitepress build documentation",
"docs:dev": "vitepress dev documentation",
"docs:build": "vitepress build documentation",
"docs:preview": "vitepress preview documentation",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"postinstall": "husky install"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-lerna-scopes": "^19.5.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"vitepress": "^1.5.0",
"vue": "^3.5.13"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "yarn@4.5.3"
}