-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 733 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 733 Bytes
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
{
"name": "reactNativeChat",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"react-native": "^0.21.0",
"react-native-navbar": "^1.2.2",
"react-native-sqlite-storage": "^2.1.3"
},
"devDependencies": {
"exec": "^0.2.1",
"gulp": "^3.9.1",
"gulp-esformatter": "^6.0.0",
"jest-babel-preprocessor": "^0.3.0",
"jest-cli": "^0.9.1",
"sync-exec": "^0.6.2"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/jest-babel-preprocessor/preprocessor.js",
"unmockedModulePathPatterns": [
"/node_modules/"
],
"testPathDirs": [
"js/"
]
}
}