-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.82 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
63
64
65
66
67
{
"name": "app",
"version": "0.0.1",
"private": true,
"scripts": {
"precommit": "lint-staged",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" .",
"fix": "yarn run lint-js --fix",
"rn-start": "node node_modules/react-native/local-cli/cli.js start",
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"build": "babel src/ -d build/",
"prepublish": "yarn run build",
"test": "jest"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"lint-staged": {
"ignore": [
"package.json"
],
"linters": {
"*.{js,jsx}": [
"eslint --no-ignore --fix",
"git add --force"
],
"*.{json,md,graphql}": [
"prettier --write",
"git add --force"
]
}
},
"dependencies": {
"@expo/vector-icons": "^6.3.1",
"expo": "^27.0.1",
"react": "16.3.1",
"react-native": "0.55.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "23.0.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-react-native": "^3.2.1",
"flow-bin": "^0.73.0",
"husky": "^0.14.3",
"jest": "23.1.0",
"jest-expo": "~27.0.0",
"lint-staged": "^7.1.3",
"prettier": "^1.13.4",
"react-native-scripts": "^1.14.0",
"react-test-renderer": "16.3.1"
},
"jest": {
"preset": "jest-expo"
}
}