-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
{
"name": "react-native-dev-console",
"version": "0.0.1",
"description": "React Native Dev Console",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"test": "jest",
"flow": "flow",
"prettier": "prettier 'src/**/*.js' --write"
},
"keywords": [
"react-native-dev-console",
"react-native",
"ios",
"console",
"debug"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zeljkoX/react-native-dev-console.git"
},
"author": "Zeljko Markovic <[email protected]> (https://github.com/zeljkoX/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-community/react-native-dev-console/issues"
},
"homepage": "https://github.com/react-native-community/react-native-dev-console#readme",
"dependencies": {
"pretty-format": "^23.2.0",
"prop-types": "^15.6.2",
"react-native-syntax-highlighter": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-preset-react-native": "^4.0.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.0.1",
"flow-bin": "~0.75.0",
"jest": "^23.2.0",
"prettier": "^1.13.7",
"react-dom": "16.4.1",
"react-test-renderer": "16.4.1",
"react": "16.4.1",
"react-native": "0.55.4"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/__setup__/enzyme.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}