-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "@geekie/navigator",
"version": "1.2.0",
"description": "A minimal navigator library for React & React Native",
"repository": "geekie/navigator",
"license": "MIT",
"main": "src/Navigator.js",
"files": [
"src"
],
"keywords": [
"react",
"react-native",
"navigation",
"navigator",
"animated"
],
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"immer": ">=9.0.6"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/eslint-parser": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@testing-library/react-native": "^8.0.0",
"babel-jest": "^24.8.0",
"codecov": "^3.0.4",
"eslint": "^8.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.26.1",
"jest": "^27.3.1",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^1.14.0",
"react": "17.0.2",
"react-native": "0.66.1",
"react-test-renderer": "17.0.2"
},
"scripts": {
"lint": "eslint . && prettier --list-different README.md",
"test": "jest"
}
}