-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "umaso",
"version": "0.0.1",
"module": "es/index.js",
"scripts": {
"test": "vitest",
"test:once": "vitest run",
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "eslint --fix \"**/*.{ts,tsx,js,jsx}\"",
"coverage": "vitest run --coverage",
"docs": "dumi dev",
"docs:build": "dumi build",
"build": "father-build",
"prepare": "husky install",
"typecheck": "tsc --noEmit"
},
"typings": "es/index.d.ts",
"dependencies": {
"@types/react-test-renderer": "^18.0.0",
"classnames": "^2.3.1",
"react": "^18.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.2.1",
"@umijs/plugin-sass": "^1.1.1",
"@vitejs/plugin-react": "^1.3.2",
"c8": "^7.11.3",
"dumi": "^1.1.0",
"eslint": "^8.18.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"react-dom": "18.2.0",
"react-test-renderer": "^18.2.0",
"sass": "^1.52.3",
"typescript": "^4.7.4",
"vite": "^2.9.12",
"vitest": "^0.15.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json,yml,yaml}": [
"eslint --fix"
]
}
}