forked from nihgwu/react-native-dva-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "DvaStarter",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"test": "jest",
"prettier": "prettier --write --single-quote --no-semi --trailing-comma es5 --print-width 80 \"src/**/*.js\"",
"lint": "eslint src",
"format": "yarn prettier && yarn lint --fix",
"precommit": "yarn format"
},
"dependencies": {
"dva-core": "^1.3.0",
"react": "^16.4.1",
"react-native": "^0.55.4",
"react-navigation": "^2.5.1",
"react-navigation-redux-helpers": "^2.0.2",
"react-redux": "^5.0.7"
},
"devDependencies": {
"babel-eslint": "^8.2.4",
"babel-jest": "^23.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-react-native": "^4.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "^7.9.1",
"husky": "^0.14.3",
"jest": "^23.1.0",
"prettier": "^1.13.5",
"react-test-renderer": "^16.4.1"
},
"jest": {
"preset": "react-native"
}
}