-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 903 Bytes
/
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
{
"name": "modalor",
"private": true,
"packageManager": "[email protected]",
"description": "A modal state manager for Vue3/React.",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"lint:fix": "eslint . --fix",
"prepublish": "pnpm build"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.2",
"@changesets/cli": "^2.27.11",
"@eslint-react/eslint-plugin": "^1.23.2",
"eslint": "^9.17.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"lint-staged": "^15.3.0",
"simple-git-hooks": "^2.11.1",
"turbo": "^2.3.3",
"typescript": "^5.7.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}