-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
95 lines (95 loc) · 2.82 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "MyDingDong",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"lint": "eslint . --fix",
"commit": "git-cz",
"fix-androidX": "jetify -r"
},
"dependencies": {
"@ant-design/react-native": "^3.3.0",
"@react-native-community/async-storage": "^1.10.0",
"@react-native-community/masked-view": "^0.1.7",
"@react-navigation/bottom-tabs": "^5.2.6",
"@react-navigation/native": "^5.1.5",
"@react-navigation/stack": "^5.2.10",
"axios": "^0.19.2",
"dva-core": "^2.0.2",
"dva-loading": "^3.0.20",
"lodash": "^4.17.15",
"lottie-ios": "3.1.3",
"lottie-react-native": "^3.3.2",
"rc-form": "2.4.0",
"react": "16.11.0",
"react-native": "0.62.0",
"react-native-device-info": "^5.5.4",
"react-native-fast-image": "7.0.2",
"react-native-gesture-handler": "^1.6.1",
"react-native-iphone-x-helper": "1.2.1",
"react-native-keyboard-manager": "4.0.13-16",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.4.0",
"react-native-smartrefreshlayout": "^0.6.7",
"react-native-splash-screen": "^3.2.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"@types/lodash": "^4.14.150",
"@types/react": "^16.9.32",
"@types/react-native": "^0.62.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"chalk": "^4.0.0",
"eslint": "^6.5.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"jetifier": "^1.6.5",
"lint-staged": "^10.1.1",
"metro-react-native-babel-preset": "^0.58.0",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.11.0",
"typescript": "^3.8.3",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --write",
"eslint --fix",
"git add"
],
"src/**/*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}