-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
{
"name": "RNAppStoreListingApp",
"version": "0.0.1",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"aos": "react-native run-android",
"ios": "react-native run-ios",
"flow": "flow",
"aos-release": "react-native run-android --variant=release",
"lint": "eslint --fix src/**/*"
},
"dependencies": {
"axios": "^0.19.2",
"axios-cache-adapter": "^2.5.0",
"immutable": "^4.0.0",
"moment": "^2.24.0",
"native-base": "^2.13.12",
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-elements": "^1.2.7",
"react-native-vector-icons": "^6.6.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-actions": "^2.3.2",
"redux-immutable": "^4.0.0",
"redux-persist": "^5.10.0",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "25.1.0",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "4.0.1",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-native": "^3.8.1",
"flow-bin": "^0.67.1",
"flow-remove-types": "^2.121.0",
"husky": "^4.2.3",
"jest": "25.1.0",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.13.1",
"redux-logger": "^3.0.6"
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint"
}
}
}