-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.01 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.01 KB
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
{
"name": "RNredux",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-syntax-flow": "^6.18.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.67.1",
"flow-coverage-report": "^0.5.0",
"flow-typed": "^2.3.0",
"husky": "^0.14.3",
"jest-expo": "25.0.0",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react-native-scripts": "1.11.1",
"react-test-renderer": "16.2.0",
"redux-mock-store": "^1.5.1",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js",
"flow_coverage":
"flow-coverage-report -i 'src/**/*.js' -x 'src/test/**' -t html -t text",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{json,md}": ["prettier --write", "git add"],
"*.js": ["prettier --write", "eslint --fix", "stylelint", "git add"]
},
"jest": {
"preset": "jest-expo",
"moduleNameMapper": {
"styled-components":
"<rootDir>/node_modules/styled-components/dist/styled-components.native.cjs.js"
}
},
"dependencies": {
"eslint-plugin-react-native": "^3.2.1",
"expo": "^25.0.0",
"polished": "^1.9.2",
"react": "16.2.0",
"react-native": "0.52.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-devtools": "^3.4.1",
"redux-thunk": "^2.2.0",
"styled-components": "^3.2.3"
}
}