-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "AppTemplate",
"version": "0.0.1",
"private": true,
"scripts": {
"flow": "flow",
"lint": "eslint src/**/*.js",
"prettier": "prettier --config ./prettier.config.js --write \"src/**/*.js\"",
"rename": "node ./scripts/rename.js",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-gesture-handler": "^1.0.12",
"react-native-screens": "^1.0.0-alpha.21",
"react-native-vector-icons": "git+https://github.com/CSFrequency/react-native-vector-icons.git",
"react-navigation": "^3.0.9"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.2",
"flow-bin": "^0.78.0",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"inquirer": "^6.2.1",
"jest": "23.6.0",
"lint-staged": "^8.1.0",
"metro-react-native-babel-preset": "0.51.1",
"prettier": "1.15.3",
"react-test-renderer": "16.6.3",
"replace-in-file": "^3.4.2"
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}