forked from nihgwu/react-native-dva-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "DvaStarter",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"prettier": "prettier --write --single-quote --no-semi --trailing-comma es5 --print-width 80 \"app/**/*.js\"",
"lint": "eslint app",
"format": "yarn prettier && yarn lint -- --fix",
"precommit": "yarn format"
},
"dependencies": {
"dva-core": "^0.1.3",
"react": "16.0.0-alpha.12",
"react-native": "^0.47.1",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.6",
"redux-persist": "^4.8.3"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-native": "^2.1.0",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.2.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"prettier": "^1.5.3",
"react-test-renderer": "^15.6.1"
},
"jest": {
"preset": "react-native"
}
}