-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
43 lines (43 loc) · 1.05 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": "ReactNativeReduxExample",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"start-reset": "npm run start -- --reset-cache",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"flow": "glow"
},
"dependencies": {
"react": "16.2.0",
"react-native": "0.52.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "22.1.0",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-react-native": "^3.2.1",
"flow-bin": "^0.61.0",
"glow": "^1.1.2",
"jest": "22.1.4",
"pre-commit": "^1.2.2",
"react-test-renderer": "16.2.0"
},
"jest": {
"preset": "react-native"
},
"precommit": [
"lint",
"flow"
],
"license": "MIT"
}