-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "react-shared-hooks",
"version": "0.0.5",
"description": "React shared hooks",
"main": "src/index.js",
"repository": "https://github.com/dimapaloskin/react-shared-hooks",
"author": "Dima Paloskin",
"license": "MIT",
"scripts": {
"build": "rollup -c rollup.config.js",
"prepublish": "npm run build",
"test": "jest",
"lint": "eslint ./src"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^0.0.0",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.86.0",
"jest": "^23.6.0",
"react-test-renderer": "^16.7.0-alpha.0",
"rollup": "^0.67.0",
"rollup-plugin-babel": "^4.0.3"
},
"peerDependencies": {
"react": "^16.7.0-alpha.0"
}
}