-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.6 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
{
"name": "tripWallet",
"version": "0.0.2",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start --port 8082",
"ios": "react-native run-ios --port 8082",
"android": "react-native run-android --port 8082",
"react-native-debugger": "env REACT_DEBUGGER=\"$([ -d '/Applications/React Native Debugger.app' ] && echo \"open 'rndebugger://set-debugger-loc?host=localhost&port=8082' --args\")\" node node_modules/react-native/local-cli/cli.js start",
"test": "node_modules/.bin/jest --coverage -u",
"lint": "node_modules/.bin/eslint --ext .js ./src --fix --cache"
},
"dependencies": {
"await-to-js": "^2.0.1",
"axios": "^0.18.0",
"prop-types": "^15.6.1",
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-i18n": "^2.0.12",
"react-navigation": "^2.3.1",
"react-navigation-redux-helpers": "^2.0.1",
"trip-wallet": "^0.1.5"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "23.0.1",
"babel-plugin-import": "^1.8.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-react-native": "^3.2.0",
"jest": "23.1.0",
"pre-commit": "^1.2.2",
"react-test-renderer": "16.3.1"
},
"pre-commit": [
"lint"
],
"jest": {
"preset": "react-native",
"collectCoverage": true,
"coverageDirectory": "./coverage",
"testMatch": [
"**/__tests__/**/?(*.)(spec|test).js?(x)"
]
}
}