forked from netguru/sticky-parallax-header
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "react-native-sticky-parallax-header",
"version": "0.4.0",
"main": "src/index.js",
"types": "src/index.d.ts",
"source": "src/index",
"repository": "https://github.com/netguru/sticky-parallax-header",
"author": "IdaszakDaniel <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"prepush": "yarn test && yarn lint",
"release": "release-it",
"test": "jest"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^1.1.0",
"@testing-library/react-native": "^7.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-reactnative": "^1.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-react-native": "^3.9.1",
"husky": "^4.2.3",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"react": "16.11.0",
"react-native": "0.62.2",
"react-test-renderer": "^16.13.1",
"release-it": "^13.5.1"
},
"husky": {
"hooks": {
"pre-push": "yarn prepush",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}