-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.63 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": "ReactNativeMobXBoilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android:device": "cd android && ./gradlew assembleRelease && cd .. && react-native run-android --variant=release",
"android:simulator": "react-native run-android",
"ios": "react-native run-ios --simulator=\"iPhone 6 Plus\"",
"ios:5s": "react-native run-ios --simulator=\"iPhone 5s\"",
"ios:ipad": "react-native run-ios --simulator=\"iPad Air 2\"",
"lint": "eslint .",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test:coverage": "NODE_ENV=test ./node_modules/.bin/jest --config .jestrc --coverage",
"test:jest": "NODE_ENV=test ./node_modules/.bin/jest --config .jestrc --verbose",
"test:watch": "NODE_ENV=test ./node_modules/.bin/jest --config .jestrc --watch",
"test": "npm run lint && npm run test:jest"
},
"dependencies": {
"lodash": "4.17.4",
"mobx": "3.2.1",
"mobx-react": "4.2.2",
"moment": "2.18.1",
"prop-types": "15.5.10",
"react": "16.0.0-alpha.12",
"react-native": "0.46.1",
"react-native-device-info": "0.10.2",
"react-native-extended-stylesheet": "0.6.0",
"react-navigation": "1.0.0-beta.11"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-preset-react-native": "2.1.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "4.1.1",
"eslint-config-airbnb": "15.0.2",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.1.0",
"jest": "20.0.4",
"react-test-renderer": "16.0.0-alpha.12"
},
"jest": {
"preset": "react-native"
}
}