forked from locphan87/react-native-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.26 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-native-boilerplate",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "10.0.1",
"babel-preset-react-native": "4.0.1",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"enzyme-to-json": "3.3.4",
"eslint": "5.6.1",
"eslint-config-universe": "1.0.7",
"eslint-plugin-fp": "2.3.0",
"flow-bin": "^0.78",
"husky": "1.1.1",
"jest-expo": "^29.0.0",
"json-server": "0.14.0",
"lint-staged": "7.3.0",
"prettier": "1.14.3",
"react-dom": "16.3.1",
"react-fake-props": "0.2.1",
"react-native-scripts": "2.0.1",
"react-test-renderer": "16.3.1",
"validate-commit": "3.4.0"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"commitmsg": "validate-commit-msg",
"server": "json-server --watch ./data.json",
"deploy": "make deploy-expo",
"flow": "flow",
"precommit": "flow && lint-staged",
"prettier": "prettier src/**/*.{js,json}",
"setup": "make setup",
"start": "make start",
"lint": "eslint ./src",
"lint:fix": "yarn lint --fix",
"eject": "react-native-scripts eject",
"android": "make run-android",
"ios": "make run-ios",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test:wc": "yarn test:watch --coverage",
"test:ci": "yarn test:coverage --bail"
},
"lint-staged": {
"src/**/*.{js,json}": [
"prettier --write",
"yarn lint:fix",
"git add"
]
},
"dependencies": {
"babel-plugin-dotenv-import": "2.0.0",
"expo": "^29.0.0",
"formik": "1.3.1",
"glamorous-native": "1.4.0",
"key-mirror-nested": "1.3.0",
"ramda": "^0.25.0",
"ramda-adjunct": "2.10.0",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-29.0.0.tar.gz",
"react-native-elements": "1.0.0-beta4",
"react-native-i18n": "2.0.15",
"react-navigation": "2.17.0",
"react-redux": "^5.0.6",
"recompose": "^0.30.0",
"redux": "^4.0.0",
"redux-actions": "^2.6.1",
"redux-persist": "5.10.0",
"redux-promise-middleware": "5.1.1",
"redux-thunk": "^2.3.0",
"reselect": "4.0.0",
"seamless-immutable": "7.1.4",
"type-to-reducer": "1.1.0"
}
}