-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.17 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
{
"name": "e-bay",
"author": "joel hawkins <[email protected]>",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.46",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@testing-library/user-event": "^10.0.0",
"google-maps-react": "^2.0.2",
"lodash.isempty": "^4.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"typeface-fira-code": "^1.1.4",
"typeface-inconsolata": "^0.0.72"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --max-warnings 0 \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --loglevel warn --write \"*.{js,json,md}\" \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"*.{js,json,md}\" \"src/**/*.{js,jsx,ts,tsx,json,css,md}\""
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"src/**/*.{json,css,md}": [
"prettier --write",
"git add"
],
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings 0",
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"jsxSingleQuote": true
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": ">=4",
"import-sort-style-module": "^6.0.0",
"lint-staged": ">=10",
"prettier": "^2.0.2",
"prettier-plugin-import-sort": "^0.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}