-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
82 lines (82 loc) · 2.56 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
{
"name": "react-native-elements-playground",
"version": "3.0.0",
"private": true,
"homepage": "https://react-native-elements.js.org",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"@react-native-community/toolbar-android": "^0.1.0-rc.2",
"copy-dir": "^1.3.0",
"find-remove": "^3.0.0",
"history": "^5.0.0",
"mdx.macro": "^0.2.9",
"modal-react-native-web": "^0.2.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^6.1.0",
"react-lottie": "^1.2.3",
"react-native-elements": "*",
"react-native-safe-area-context": "^3.2.0",
"react-native-vector-icons": "^6.7.0",
"react-native-web": "^0.12.0",
"react-native-web-linear-gradient": "^1.1.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-view": "^2.3.2"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"prepare": "node injectLatestProps.js",
"deploy": "gh-pages -d build",
"postinstall": "patch-package",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|jsx|json)\" --ignore-unknown",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --check",
"lint": "eslint --ignore-path .gitignore . --fix",
"check-lint": "eslint --ignore-path .gitignore .",
"make-consistent": "npm run format && npm run lint",
"validate": "npm run check-format && npm run check-lint"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.13.12",
"customize-cra": "^1.0.0",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.1.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"react-app-rewired": "^2.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,css,md,json}": ["npm run validate", "git add"]
}
}