forked from Thinkmill/react-conf-app
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.35 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": "ReactConf2017",
"version": "1.0.7",
"private": true,
"scripts": {
"precommit": "lint-staged --verbose",
"start": "node_modules/react-native/packager/packager.sh",
"format": "prettier --single-quote --trailing-comma es5 '{app,__{tests,mocks}__}/**/*.js' --write",
"flow": "flow",
"test": "jest",
"update-snapshots": "jest -u"
},
"dependencies": {
"moment": "^2.17.1",
"react": "15.4.2",
"react-native": "^0.42.0",
"react-native-blur": "^2.0.0",
"react-native-code-push": "^1.17.0-beta",
"react-native-linear-gradient": "^2.0.0",
"react-native-maps": "airbnb/react-native-maps",
"react-native-smart-splash-screen": "^2.3.3",
"react-native-vector-icons": "^4.0.0"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-preset-react-native": "1.9.1",
"flow-bin": "^0.39.0",
"flow-typed": "^2.0.0",
"husky": "^0.13.2",
"jest": "18.1.0",
"lint-staged": "^3.3.1",
"mockdate": "^2.0.1",
"prettier": "^0.21.0",
"prettier-check": "^1.0.0",
"react-test-renderer": "15.4.2"
},
"jest": {
"preset": "react-native",
"testRegex": "(/__tests__/.+\\.test\\.js$)",
"setupFiles": [
"<rootDir>/__tests__/setup.js"
]
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
}
}