-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "ReactRailsApp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"flow": "node_modules/flow-bin/cli.js",
"lint": "node_modules/eslint/bin/eslint.js --config .eslintrc.yml app"
},
"dependencies": {
"immutable": "^3.8.1",
"lodash": "^4.17.2",
"normalizr": "^2.3.0",
"react": "15.4.1",
"react-native": "0.39.1",
"react-native-elements": "^0.7.1",
"react-native-router-flux": "^3.37.0",
"react-native-vector-icons": "^3.0.0",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-immutable": "^3.0.8",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.4",
"whatwg-fetch": "^2.0.1"
},
"jest": {
"preset": "jest-react-native",
"setupFiles": [
"./.jest.js"
]
},
"devDependencies": {
"babel-jest": "17.0.2",
"babel-preset-react-native": "1.9.0",
"eslint": "^3.12.0",
"eslint-config-shakacode": "^13.2.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-react-native": "^2.2.0",
"flow-bin": "^0.35.0",
"jest": "17.0.3",
"jest-react-native": "17.1.0",
"react-test-renderer": "15.4.1",
"redux-mock-store": "^1.2.1"
}
}