-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.33 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
{
"name": "magik-react-hooks",
"version": "2.4.0",
"description": "Collection of common (and useful) hooks",
"author": "InMagik srl <info@inmagik.com>",
"authors": [
"Giovanni Fumagalli <giovanni.fumagalli@inmagik.com>",
"Alberto Osio <osioalberto@gmail.com>"
],
"license": "MIT",
"repository": "inmagik/magik-react-hooks",
"scripts": {
"prebuild": "rimraf lib && node scripts/makeDefs.js",
"test": "jest",
"test-coverage": "jest --coverage",
"dev-example": "webpack-dev-server",
"build": "rollup -c && tsc --project tsconfig.build.json",
"start": "rollup -c -w"
},
"files": [
"lib",
"qpUtils",
"use*"
],
"peerDependencies": {
"query-string": "^6.7.0",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"react-router": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.1.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^5.0.3",
"@types/jest": "^26.0.20",
"@types/react-router": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.6",
"codecov": "^3.6.1",
"css-loader": "^2.1.1",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.6.3",
"query-string": "^6.13.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.2.0",
"react-test-renderer": "^17.0.1",
"rollup": "^2.38.0",
"style-loader": "^0.23.1",
"typescript": "^4.1.3",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"fast-deep-equal": "^3.1.3",
"memoize-one": "^5.1.1"
}
}