-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "smart-hooks",
"private": true,
"description": "Collections of React hooks that fill some gaps in the originally provided set of hooks extending or improving their logic",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turtleflyer/smart-hooks.git"
},
"keywords": [
"react"
],
"author": "Andrei Kovalev",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/turtleflyer/smart-hooks/issues"
},
"homepage": "https://github.com/turtleflyer/smart-hooks#readme",
"workspaces": [
"internal_packages/*"
],
"dependencies": {
"@~internal/bundle-utilities": "^0.1.0",
"@~internal/check-types": "^0.1.0",
"@~internal/jest-config-factory": "^0.1.0",
"@~internal/rollup-config-factory": "^0.1.0",
"@~internal/test-utilities": "^0.1.0",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.12.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.7",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^26.5.2",
"lerna": "^3.22.1",
"prettier": "^2.1.2",
"react": "^17.0.0",
"rollup": "^2.29.0",
"ts-jest": "^26.4.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
}
}