-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "react-hanger",
"version": "2.4.5",
"description": "Set of a helpful hooks, for different specific to some primitives types state changing helpers",
"author": "kitze",
"license": "MIT",
"repository": "kitze/react-hanger",
"sideEffects": false,
"contributors": [
{
"name": "Andrii Los",
"email": "[email protected]",
"url": "https://github.com/RIP21"
}
],
"main": "./index.js",
"module": "./esm/index.js",
"typings": "./index.d.ts",
"scripts": {
"lint": "eslint ./src --ext ts,tsx --max-warnings 0",
"lint:fix": "yarn lint --fix",
"test": "jest src",
"test:watch": "yarn test -- --watch",
"build:esm": "tsc",
"build:cjs": "tsc -p tsconfig-require.json",
"clean": "rimraf lib",
"build": "yarn build:esm && yarn build:cjs",
"postbuild": "node copyPackageJsonAndReadme.js",
"postversion": "yarn clean && yarn build",
"release": "np --contents lib --no-yarn"
},
"peerDependencies": {
"react": ">16.8.0",
"react-dom": ">16.8.0"
},
"devDependencies": {
"@testing-library/react": "^8.0.5",
"@testing-library/react-hooks": "^1.1.0",
"@types/jest": "^25.2.1",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"babel-eslint": "10.1.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.2.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.7.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "^25.3.0",
"np": "6.2.1",
"prettier": "2.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.4.0",
"typescript": "^4.2.4"
},
"favoriteScripts": [
"test:watch"
]
}