-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·38 lines (38 loc) · 1007 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
35
36
37
38
{
"name": "Example",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"autobind-decorator": "^1.4.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"mobx": "^3.2.1",
"mobx-react": "^4.2.1",
"prop-types": "^15.5.10",
"react": "16.3.2",
"react-native": "0.55.4",
"react-native-button": "^2.0.0",
"react-native-message-bar": "^1.6.0",
"react-native-router-flux": "4.0.0-beta.32",
"react-navigation": "1.5.8"
},
"devDependencies": {
"babel-jest": "20.1.0-echo.1",
"babel-preset-react-native": "2.1.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"jest": "20.1.0-echo.1",
"react-test-renderer": "16.3.2"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation)"
],
"setupFiles": [
"./test/setup.js"
]
}
}