-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.42 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "GraphqlExample",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android && adb reverse tcp:8081 tcp:8081",
"ios": "react-native run-ios",
"lint": "eslint index.js src __mocks__",
"lint-fix": "eslint index.js src __mocks__ --fix",
"postinstall": "rndebugger-open",
"api": "json-graphql-server db.js",
"start": "concurrently 'npm run api' 'npm run start-rn'",
"start-rn": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"check-env": "yarn solidarity",
"test-watch": "jest --watch"
},
"dependencies": {
"apollo-client": "^2.0.2",
"apollo-client-preset": "^1.0.2",
"faker": "^4.1.0",
"graphql": "^0.11.7",
"graphql-tag": "^2.5.0",
"immutability-helper": "^2.4.0",
"json-graphql-server": "^1.0.1",
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-apollo": "1.4.15",
"react-native": "0.50.3",
"react-native-debugger-open": "^0.3.15",
"react-native-grid-list": "^1.0.5",
"react-native-swiper-flatlist": "^1.0.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-devtools-extension": "^2.13.2",
"redux-persist": "^4.10.1",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-jest": "21.2.0",
"babel-plugin-transform-remove-console": "^6.8.5",
"babel-preset-react-native": "4.0.0",
"concurrently": "^3.5.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"enzyme-to-json": "^3.1.4",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-prettier": "^2.1.1",
"eslint-import-resolver-reactnative": "^1.0.2",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-prettier": "^2.1.1",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-react-native": "^3.1.0",
"jest": "21.2.1",
"pre-commit": "^1.2.2",
"prettier": "^1.3.1",
"prettier-eslint": "^8.2.1",
"react-dom": "^16.0.0",
"redux-mock-store": "^1.3.0",
"solidarity": "^1.0.0",
"solidarity-react-native": "^1.0.0"
},
"jest": {
"preset": "react-native",
"setupTestFrameworkScriptFile": "./enzyme.js",
"snapshotSerializers": [
"./node_modules/enzyme-to-json/serializer"
]
},
"pre-commit": {
"run": "lint"
}
}