-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.4 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
47
48
49
{
"name": "myfirstreactnativeapp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"ios": "react-native run-ios",
"android": "react-native run-android",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"prettier": "prettier --write '*.js'",
"format-code": "yarn run prettier && yarn run lint:fix"
},
"dependencies": {
"color": "^3.0.0",
"hoist-non-react-statics": "^3.0.0-rc.1",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "16.4.1",
"react-native": "0.56.0",
"react-native-dropdownalert": "^3.5.0",
"react-native-extended-stylesheet": "^0.8.1",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^2.9.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-jest": "23.2.0",
"babel-preset-react-native": "^5",
"eslint": "^5.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "23.3.0",
"prettier": "1.13.7",
"react-test-renderer": "16.4.1"
},
"jest": {
"preset": "react-native"
}
}