forked from ricokahler/next-data-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.87 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
{
"name": "next-data-hooks",
"version": "0.5.1",
"description": "Use `getStaticProps` as react hooks",
"private": true,
"scripts": {
"test": "jest",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"build": "node ./scripts/build",
"clean": "rm -rf dist",
"types": "tsc",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"author": {
"email": "[email protected]",
"url": "https://github.com/ricokahler",
"name": "Rico Kahler"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.18.13",
"@babel/node": "7.18.10",
"@babel/plugin-transform-runtime": "7.18.10",
"@babel/preset-env": "7.18.10",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@ricokahler/exec": "1.1.0",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/common-tags": "1.8.1",
"@types/jest": "28.1.8",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@types/react-test-renderer": "18.0.0",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"babel-eslint": "10.1.0",
"common-tags": "1.8.2",
"create-next-app": "12.2.5",
"eslint": "8.23.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.6",
"eslint-plugin-react-hooks": "4.6.0",
"folder-hash": "4.0.2",
"jest": "28.1.3",
"next": "12.2.5",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"react-test-renderer": "18.2.0",
"rollup": "2.79.0",
"typescript": "4.8.2"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18.0.0",
"next": "^9.3 || ^10 || ^11.0.0 || ^12.0.0"
}
}