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
95 lines (95 loc) · 2.51 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.51 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
95
{
"name": "react-table-example",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ggascoigne/namor": "^2.0.2",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@welldone-software/why-did-you-render": "^6.2.0",
"classnames": "^2.3.1",
"match-sorter": "^6.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"react-table": "^7.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/classnames": "^2.3.1",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^26.0.23",
"@types/match-sorter": "^6.0.0",
"@types/node": "^16.0.0",
"@types/prettier": "^2.3.1",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@types/react-table": "^7.7.1",
"@types/testing-library__jest-dom": "^5.14.0",
"@types/testing-library__react": "^10.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"import-sort-cli": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"prettier-plugin-import-sort": "^0.0.7",
"react-scripts": "4.0.3",
"source-map-explorer": "^2.5.2",
"typescript": "~4.3.5",
"typesync": "^0.8.0"
},
"resolutions": {},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"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}'",
"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": {
"style": "module"
},
".ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"lint-staged": {
"src/*.{js,jsx,ts,tsx}": [
"prettier --no-color --write",
"yarn lint"
],
"*.{css,scss,graphql}": [
"prettier --no-color --write"
]
}
}