-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.46 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
{
"name": "devcapp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"rna": "react-native run-android --port 8081",
"rni": "react-native run-ios --port 8081",
"lint": "eslint ./src",
"flow": "flow ."
},
"dependencies": {
"react": "16.8.3",
"react-native": "0.59.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/runtime": "^7.3.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"flow-bin": "^0.92.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"metro-react-native-babel-preset": "^0.53.1",
"prettier": "^1.16.4",
"react-test-renderer": "16.8.3"
},
"husky": {
"hooks": {
"pre-commit": "flow check && lint-staged"
}
},
"lint-staged": {
"linters": {
"**/*.js": [
"prettier --write",
"eslint --fix --max-warnings 0",
"git add"
],
"**/*.{json,graphql,gql}": [
"prettier --write",
"git add"
]
},
"ignore": [
"yarn.lock",
"package-lock.json",
"node_modules/**/*",
"flow-typed/**/*",
"android/**/*",
"ios/**/*"
]
},
"jest": {
"preset": "react-native"
}
}