-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 KB
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
{
"name": "uwaridesharing",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "eslint source/** && flow && jest --verbose",
"prepare": "mkdir -p lib && babel source/ -D lib",
"clear": "watchman watch-del-all && cd android && ./gradlew clean && cd .. && rm -rf node_modules && yarn cache clean && yarn install",
"eslint": "eslint source/**",
"flow": "flow",
"jest": "jest --verbose"
},
"dependencies": {
"firebase": "^3.9.0",
"native-base": "~2.0.13",
"react": "~15.4.2",
"react-native": "0.42.0",
"react-native-button": "^1.8.2",
"react-native-credit-card-input": "^0.3.3",
"react-native-elements": "^0.11.2",
"react-native-extended-stylesheet": "^0.4.0",
"react-native-google-places-autocomplete": "^1.2.11",
"react-native-maps": "^0.13.1",
"react-native-vector-icons": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "19.0.0",
"babel-preset-flow": "^6.23.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-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-react-native": "^2.3.1",
"flow-bin": "^0.42.0",
"jest": "19.0.2",
"react-test-renderer": "~15.4.1"
},
"jest": {
"preset": "react-native",
"testEnvironment": "node",
"transformIgnorePatterns": [
"node_modules/(?!react-native|uwaridesharing|@shoutem)/"
]
}
}