-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.15 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
{
"name": "react-hook-collection",
"version": "0.0.2",
"description": "Collection of React Hooks",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"release": "standard-version",
"test": "jest --coverage",
"dev": "rollup -w -c",
"build": "rollup -c",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "yarn lint --fix",
"lint:types": "tsc --noEmit",
"lint:prettier": "prettier --write ./src/**/*.ts",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [],
"author": "liangdong",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-essentials": "^6.0.26",
"@storybook/addon-links": "^6.0.26",
"@storybook/react": "^6.0.26",
"@testing-library/react-hooks": "^3.4.2",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-loader": "^8.1.0",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lint-staged": "^10.4.0",
"markdown-loader": "^6.0.0",
"prettier": "^2.1.2",
"react-is": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.29.0",
"rollup-plugin-analyzer": "^3.3.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-typescript2": "^0.27.3",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:types && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}