-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.17 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
79
{
"name": "react-hooks-render-props",
"description": "A hacking custom hook to emulate render props (function as a child)",
"version": "0.2.0",
"author": "Daishi Kato",
"repository": {
"type": "git",
"url": "https://github.com/dai-shi/react-hooks-render-props.git"
},
"main": "./dist/index.js",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"compile": "babel src -d dist",
"test": "npm run eslint && npm run tsc-test && npm run jest",
"eslint": "eslint --ext .js,.ts,.tsx --ignore-pattern dist .",
"jest": "jest",
"tsc-test": "tsc --project . --noEmit",
"examples:minimal": "DIR=01_minimal EXT=js webpack-dev-server",
"examples:typescript": "DIR=02_typescript webpack-dev-server",
"examples:apollo": "DIR=03_apollo webpack-dev-server"
},
"keywords": [
"react",
"hooks",
"stateless",
"thisless",
"pure"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@types/graphql": "^14.0.5",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"apollo-cache-inmemory": "^1.4.2",
"apollo-client": "^2.4.12",
"apollo-link-schema": "^1.1.6",
"babel-loader": "^8.0.5",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.5.1",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"react": "16.8.1",
"react-apollo": "^2.4.1",
"react-dom": "16.8.1",
"react-testing-library": "^5.5.3",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}