-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.57 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
{
"name": "HeyNeighbor",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "./node_modules/jest-cli/bin/jest.js",
"lint": "git diff HEAD --name-only --diff-filter=ACM | grep '.js$' | xargs node ./node_modules/eslint/bin/eslint.js --quiet",
"flow": "./node_modules/flow-bin/cli.js check .",
"build-android": "./android/gradlew -p android assembleRelease --stacktrace"
},
"dependencies": {
"ebus": "^0.12.0",
"engine.io-client": "^1.6.8",
"lodash": "^4.5.0",
"react-native": "^0.18.1",
"react-native-image-chooser": "^1.0.1",
"react-native-vector-icons": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"babel-jest": "^6.0.1",
"chalk": "^1.1.1",
"crypto": "0.0.3",
"eslint": "^2.1.0",
"eslint-plugin-react": "^3.16.1",
"eslint-plugin-react-native": "^0.6.0",
"flow-bin": "^0.21.0",
"jest": "^0.1.40",
"jest-cli": "^0.8.2",
"mockery": "^1.4.0",
"node-fetch": "^1.3.3",
"xmlhttprequest": "^1.8.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/radium",
"<rootDir>/node_modules/inline-style-prefixer",
"<rootDir>/node_modules/bowser",
"<rootDir>/node_modules/babel-runtime",
"<rootDir>/node_modules/core-js"
]
}
}