-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.1 KB
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
{
"name": "@truefit/rn-navigation",
"version": "5.2.0",
"description": "This repo wrap react-navigation to make navigation friendlier.",
"main": "lib/index.js",
"scripts": {
"start": "nodemon src/index.js --exec babel-node",
"compile": "node tools/build.js",
"prepare": "npm run compile",
"dev-publish": "node tools/dev-publish.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrueFit/react-native-navigation.git"
},
"author": "Josh Gretz",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrueFit/react-native-navigation/issues"
},
"homepage": "https://github.com/TrueFit/react-native-navigation#readme",
"dependencies": {
"@react-navigation/core": "^3.5.0",
"lodash": "4.17.15",
"prop-types": "^15.7.2",
"react-art": "^16.9.0",
"react-dom": "^16.9.0",
"react-native-gesture-handler": "^1.4.1",
"react-native-reanimated": "^1.2.0",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-web": "^0.11.7",
"react-navigation": "4.0.0",
"react-navigation-redux-helpers": "3.0.2",
"react-redux": "^7.1.1",
"redux": "4.0.4",
"reselect": "4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"babel-eslint": "^10.0.3",
"babel-jest": "24.9.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.16.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-watch": "^6.0.0",
"jest": "24.9.0",
"jest-haste-map": "^24.9.0",
"jest-resolve": "^24.9.0",
"metro-react-native-babel-preset": "0.56.0",
"node-dir": "^0.1.17",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"react": "16.9.0",
"react-native": "0.60.5",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3"
},
"jest": {
"preset": "react-native"
}
}