-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "empty-project-template",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "jest --no-cache"
},
"dependencies": {
"expo": "^31.0.2",
"moment": "^2.22.2",
"native-base": "^2.8.1",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-31.0.0.tar.gz",
"react-native-elements": "^0.19.1",
"react-native-modal": "6.5.0",
"react-navigation": "^2.18.0"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.4",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"jest": "^23.6.0",
"jest-expo": "^31.0.0",
"react-dom": "^16.6.0",
"react-test-renderer": "^16.6.0",
"whatwg-fetch": "2.0.4"
},
"jest": {
"preset": "jest-expo",
"transform": {
"^.+\\.(js|jsx)?$": "./node_modules/react-native/jest/preprocessor.js"
},
"setupTestFrameworkScriptFile": "./app/__MOCKS__/jestSetup.js",
"transformIgnorePatterns": [
"node_modules/(?!react-navigation|expo|expo(nent)?|expo(nent)?/.*)/"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"app"
]
}
}