-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "PokeApp",
"version": "0.0.1",
"private": true,
"scripts": {
"flow": "flow",
"lint": "node_modules/.bin/eslint src --max-warnings=0",
"relay": "relay-compiler --src ./src --schema ./schema.graphql",
"start": "node node_modules/react-native/local-cli/cli.js start",
"prettier": "prettier --write --single-quote true --trailing-comma all --print-width 120",
"prettier:all": "prettier --write --single-quote true --trailing-comma all --print-width 120 --write 'src/**/*.js'",
"test": "jest"
},
"dependencies": {
"hoist-non-react-statics": "1.2.0",
"lodash": "^4.17.11",
"react": "^16.6.1",
"react-native": "0.57.4",
"react-relay": "^1.7.0"
},
"devDependencies": {
"babel-eslint": "8.2.3",
"babel-jest": "23.6.0",
"babel-plugin-relay": "^1.7.0",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-plugin-flowtype": "2.46.3",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-react-native": "3.2.1",
"flow-bin": "0.78.0",
"graphql": "^14.0.2",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.49.0",
"react-test-renderer": "16.6.0-alpha.8af6728",
"relay-compiler": "^1.7.0"
},
"jest": {
"preset": "react-native"
}
}