-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "ReactNativeBlog",
"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": "1.2.1",
"react": "16.3.0-alpha.0",
"react-dom": "16.3.0",
"react-native": "0.54.2",
"react-native-loading-spinner-overlay": "0.5.2",
"react-native-scrollable-tab-view": "0.8.0",
"react-native-splash-screen": "3.0.6",
"react-native-storage": "0.2.2",
"react-native-vector-icons": "4.6.0",
"react-navigation": "1.5.8",
"react-navigation-redux-helpers": "1.0.3",
"react-redux": "5.0.7"
},
"devDependencies": {
"babel-eslint": "8.2.2",
"babel-jest": "22.4.3",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-react-native": "4.0.0",
"dva": "1.2.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"husky": "0.14.3",
"jest": "22.4.3",
"prettier": "1.11.1",
"react-test-renderer": "16.3.0-alpha.0"
},
"jest": {
"preset": "react-native"
}
}