-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.41 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
82
83
84
85
{
"name": "react-bind-keys",
"version": "0.0.8",
"description": "A react hook for binding hot-keys",
"main": "dist/react-bind-keys.min.js",
"types": "dist/types/index.d.ts",
"repository": "github.com/inturn/react-use-bind-keys",
"author": "INTURN",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"scripts": {
"build": "yarn clean && NODE_ENV=production yarn rollup -c rollup.config.js",
"clean": "rm -rf dist",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix",
"prebuild": "yarn lint && yarn test",
"prepublish": "yarn build",
"release": "standard-version && yarn publish --non-interactive",
"test": "yarn jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/react": "^6.1.11",
"@testing-library/react": "^11.2.2",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.30",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-loader": "^8.2.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-simple-import-sort": "^5.0.1",
"husky": "^4.0.6",
"jest": "^25.2.4",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^1.31.1",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-uglify": "^6.0.4",
"standard-version": "^9.3.2",
"ts-jest": "^25.3.0",
"typescript": "^3.4.5"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"react-use-passive-reducer": "^0.1.2"
}
}