-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "music-native",
"version": "1.0.0",
"private": false,
"devDependencies": {
"jest-expo": "^0.4.0",
"react-native-scripts": "0.0.29",
"react-test-renderer": "16.0.0-alpha.6"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"testw": "node node_modules/jest/bin/jest.js --watch",
"testc": "node node_modules/jest/bin/jest.js --coverage"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"/node_modules/(?!native-base)/"
]
},
"dependencies": {
"@expo/vector-icons": "^4.0.0",
"expo": "^16.0.0",
"native-base": "^2.1.3",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.6",
"react-native": "^0.43.4",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-debounced": "^0.4.0",
"redux-logger": "^3.0.1",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0",
"styled-components": "^1.4.6"
}
}