-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "currency-converter",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"jest-expo": "25.0.0",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react-native-scripts": "1.11.1",
"react-test-renderer": "16.2.0"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write \"app/**/*.js\"",
"format-code": "yarn run prettier && yarn run lint:fix",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"yarn run format-code",
"git add"
]
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "6.2.0",
"color": "2.0.0",
"expo": "^25.0.0",
"hoist-non-react-statics": "^2.5.0",
"moment": "2.18.1",
"prop-types": "^15.6.1",
"react": "16.2.0",
"react-native": "0.52.0",
"react-native-dropdownalert": "^3.4.0",
"react-native-extended-stylesheet": "0.8.0",
"react-navigation": "^1.5.8",
"react-navigation-redux-helpers": "^1.0.3",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.9.1",
"redux-saga": "^0.16.0"
}
}