-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"name": "Roxie",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "eslint ./components/**/*.js ./**/*.js --ignore-path .gitignore",
"test": "npm run lint && jest"
},
"dependencies": {
"babel-eslint": "^7.2.3",
"base-64": "^0.1.0",
"react": "~15.4.0-rc.4",
"react-native": "0.41.0",
"react-native-ble-manager": "^3.1.2",
"react-native-camera": "https://github.com/lwansbrough/react-native-camera.git",
"react-native-fs": "^2.1.0-rc.1",
"react-native-music-control": "^0.4.1",
"react-native-music-metadata": "^0.0.2",
"react-native-navbar": "^1.6.3",
"react-native-slider": "^0.9.1",
"react-native-sound": "https://github.com/venepe/react-native-sound.git",
"react-native-swipeout": "https://github.com/dancormier/react-native-swipeout.git",
"react-native-vector-icons": "^4.0.0",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-react-native": "^2.3.2",
"jest": "18.1.0",
"react-test-renderer": "~15.4.0-rc.4",
"redux-mock-store": "^1.2.3"
},
"jest": {
"preset": "react-native"
}
}