forked from ggascoigne/react-table-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.42 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.42 KB
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
{
"name": "react-table-example",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.9.1",
"@welldone-software/why-did-you-render": "^4.2.5",
"classnames": "^2.2.6",
"match-sorter": "^4.1.0",
"namor": "^2.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-json-view": "^1.19.1",
"react-table": "^7.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.0.4",
"@testing-library/user-event": "^10.4.0",
"@types/classnames": "^2.2.10",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^25.2.3",
"@types/match-sorter": "^4.0.0",
"@types/node": "^14.0.6",
"@types/prettier": "^2.0.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-table": "^7.0.18",
"@types/testing-library__jest-dom": "^5.9.1",
"@types/testing-library__react": "^10.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^10.2.7",
"patch-package": "^6.2.2",
"prettier": "^2.0.5",
"prettier-plugin-import-sort": "^0.0.4",
"react-scripts": "3.4.1",
"typescript": "~3.9.3",
"typesync": "^0.7.0"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"format": "prettier --no-color --loglevel warn --write 'src/**/*.{js,jsx,ts,tsx,json}'",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"postinstall": "patch-package",
"start": "react-scripts start",
"test": "react-scripts test"
},
"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"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"semi": false,
"jsxSingleQuote": true
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.{js,jsx,ts,tsx}": [
"prettier --no-color --write",
"yarn lint"
],
"*.{css,scss,graphql}": [
"prettier --no-color --write"
]
}
}