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.86 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.17.8",
"@babel/node": "7.16.8",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@ricokahler/exec": "1.1.0",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-node-resolve": "11.2.1",
"@types/common-tags": "1.8.1",
"@types/jest": "27.4.1",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/react-test-renderer": "17.0.1",
"@types/webpack": "4.41.32",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-eslint": "10.1.0",
"common-tags": "1.8.2",
"create-next-app": "12.1.1",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"folder-hash": "4.0.2",
"jest": "27.5.1",
"next": "12.1.1",
"prettier": "2.6.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-error-boundary": "3.1.4",
"react-test-renderer": "17.0.2",
"rollup": "2.70.1",
"typescript": "4.6.3"
},
"peerDependencies": {
"react": "^16.8 || ^17",
"next": "^9.3 || ^10 || ^11.0.0 || ^12.0.0"
}
}