-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.27 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
{
"name": "ParkingNotifier",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "cd android && ./gradlew clean && cd .. && react-native run-android",
"debug": "REACT_DEBUGGER='rndebugger-open --open --port 8081' npm start",
"emulator": "cd $ANDROID_SDK_ROOT/tools; emulator @`emulator -list-avds | sed -n 1p`",
"ios": "react-native run-ios",
"lint": "eslint --fix --ignore-path .eslintignore .gitignore --format=node_modules/eslint-formatter-pretty",
"lint-validate": "eslint --ignore-path .eslintignore .gitignore --quiet",
"postinstall": "rndebugger-open",
"start": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"test": "jest"
},
"dependencies": {
"lodash": "^4.17.10",
"react": "16.4.1",
"react-native": "0.56.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-eslint": "^8.2.5",
"babel-jest": "23.2.0",
"babel-preset-react-native": "^5.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"jest": "23.3.0",
"react-native-debugger-open": "^0.3.17",
"react-test-renderer": "16.4.1"
},
"jest": {
"preset": "react-native"
}
}