This repository was archived by the owner on May 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.31 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.31 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "c01ns",
"version": "0.0.1",
"private": true,
"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": "jest",
"restart": "rm -r node_modules && rm package-lock.json && yarn install",
"lint": "eslint src test",
"coverage": "rimraf coverage && jest --coverage",
"precommit": "eslint src test",
"prepush": "jest"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"art": "^0.10.1",
"axios": "^0.18.0",
"d3": "^5.0.0",
"d3-shape": "^1.2.0",
"events": "^2.0.0",
"expo": "^27.0.0",
"humps": "^2.0.1",
"lodash": "^4.17.10",
"lodash.map": "^4.6.0",
"moment": "^2.20.1",
"normalizr": "^3.2.4",
"prop-types": "^15.6.0",
"react": "16.3.1",
"react-dom": "^16.2.0",
"react-i18next": "^7.6.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-27.0.0.tar.gz",
"react-native-communications": "^2.2.1",
"react-native-elements": "^0.18.5",
"react-native-i18n": "^2.0.12",
"react-native-keyboard-aware-scroll-view": "^0.4.3",
"react-native-modal": "^5.0.0",
"react-native-progress": "^3.4.0",
"react-native-segmented-control-tab": "^3.2.2",
"react-native-vector-icons": "^4.4.2",
"react-navigation": "1.5.8",
"react-redux": "^5.0.6",
"react-sparklines": "^1.7.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.9.1",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"styled-components": "^3.2.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"husky": "^0.14.3",
"jest": "^22.4.0",
"jest-expo": "^27.0.0",
"lint-staged": "^7.0.5",
"prettier": "1.12.1",
"react-native-scripts": "1.8.1",
"react-test-renderer": "^16.3.0-alpha.1",
"redux-devtools-extension": "^2.13.2",
"rimraf": "^2.6.2"
}
}