-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
34 lines (34 loc) · 864 Bytes
/
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
{
"name": "reactWpApp",
"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-material-design": "^0.3.3",
"react-native-vector-icons": "^1.3.3"
},
"devDependencies": {
"jest-cli": "^0.9.2",
"jsdoc-to-markdown": "^1.3.3",
"react-shallow-renderer-helpers": "^2.0.2"
},
"jest": {
"scriptPreprocessor": "node_modules/react-native/jestSupport/preprocessor.js",
"setupEnvScriptFile": "node_modules/react-native/jestSupport/env.js",
"testPathIgnorePatterns": [
"/node_modules/",
"packager/react-packager/src/Activity/"
],
"testFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"promise",
"source-map"
]
}
}