-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.98 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.98 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
51
52
53
54
55
{
"name": "ushiftapp",
"version": "0.1.1",
"scripts": {
"start": "react-native start",
"lint": "eslint src",
"lint:summary": "eslint --format node_modules/eslint-summary/summary.js src",
"test": "echo 'No testing yet :('",
"rn:start": "npm run rn:reverse && react-native start",
"rn:reverse": "adb reverse tcp:3000 tcp:3000 && adb reverse tcp:8081 tcp:8081",
"rn:run-android": "react-native run-android",
"rn:run-ios": "react-native run-ios",
"build": "npm run build:android",
"build:ios": "echo 'not implemented'",
"build:android": "npm run build:android:clean && npm run build:android:assemble",
"build:android:assemble": "(cd android && ./gradlew assembleRelease)",
"build:android:clean": "(cd android && ./gradlew clean)"
},
"dependencies": {
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"mobx-state-tree": "^0.6.1",
"react": "^16.0.0-alpha.6",
"react-native": "^0.44.0",
"react-native-drawer": "^2.3.0",
"react-native-gifted-chat": "^0.1.4",
"react-native-i18n": "^1.0.0",
"react-native-item-checkbox": "lecler-i/react-native-item-checkbox",
"react-native-lock": "^0.6.0",
"react-native-maps": "^0.15.0",
"react-native-multi-slider": "^0.3.5",
"react-native-parallax-scroll-view": "^0.19.0",
"react-native-router-flux": "^3.39.1",
"react-native-slider": "^0.9.1",
"react-native-textinput-effects": "^0.3.1",
"react-native-vector-icons": "^4.1.1"
},
"devDependencies": {
"acorn": "^5.0.3",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native-stage-0": "^1.0.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-react": "^7.0.1",
"eslint-summary": "^1.0.0"
}
}