-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
62 lines (62 loc) · 1.83 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
62
{
"name": "bassa",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "eslint app/**",
"test": "jest --watch --coverage"
},
"dependencies": {
"axios": "^0.21.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"prop-types": "^15.6.1",
"react": "16.3.1",
"react-native": "0.70.4",
"react-native-action-button": "^2.8.4",
"react-native-button": "^2.3.0",
"react-native-easy-toast": "^1.1.0",
"react-native-keychain": "^3.0.0-rc.3",
"react-native-material-textfield": "^0.12.0",
"react-native-picker-select": "^4.1.0",
"react-native-progress-circle": "^2.0.0",
"react-native-push-notification": "^3.0.2",
"react-native-spinkit": "^1.1.1",
"react-native-swipe-list-view": "^1.3.0",
"react-native-timeago": "^0.4.0",
"react-native-vector-icons": "^4.6.0",
"react-native-version-number": "^0.3.4",
"react-navigation": "~2.2.0",
"react-navigation-redux-helpers": "^1.0.6",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^5.9.1",
"redux-saga": "^0.16.0",
"rn-prompt": "^1.0.3",
"socket.io-client": "^2.5.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "22.4.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-native": "^3.2.1",
"jest": "22.4.3",
"react-test-renderer": "16.3.1"
},
"jest": {
"preset": "react-native",
"verbose": true,
"testMatch": [
"__tests__/**/*.js?(x)",
"**/?(*.)+(test).js?(x)"
]
}
}