forked from surmon-china/surmon.me.native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·36 lines (36 loc) · 1.21 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
{
"name": "surmon.me.native",
"version": "0.0.1",
"private": false,
"scripts": {
"dev": "npm start --reset-cache",
"dev:all": "npm run dev:ios && npm run dev:android",
"dev:ios": "react-native run-ios",
"dev:android": "react-native run-android",
"start": "node node_modules/react-native/local-cli/cli.js start",
"build:ios": "react-native bundle --entry-file index.ios.js --platform ios --bundle-output ./ios/react.bundle",
"build:android": "cd android && ./gradlew assembleRelease",
"test": "jest",
"release:android": "cd android && ./gradlew installRelease",
"postinstall": "rndebugger-open"
},
"dependencies": {
"react": "15.4.2",
"react-native": "0.40.0",
"react-native-gifted-listview": "git+https://github.com/FaridSafi/react-native-gifted-listview.git",
"react-native-root-toast": "^1.0.5",
"react-native-simple-markdown": "^1.0.60-rc.3",
"react-native-vector-icons": "^4.0.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "19.0.2",
"react-native-debugger-open": "^0.3.3",
"react-test-renderer": "~15.4.1"
},
"jest": {
"preset": "react-native"
}
}