-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.73 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "phmtables",
"version": "0.32.1",
"private": true,
"engines": {
"node": "12.x"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"snyk": "snyk auth $SNYK_TOKEN && snyk test",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"dependencies": {
"@apollo/client": "^3.2.1",
"@apollo/link-context": "^2.0.0-beta.3",
"@date-io/dayjs": "1.3.13",
"@hot-loader/react-dom": "^17.0.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"dayjs": "^1.9.1",
"graphql": "^15.3.0",
"mui-datatables": "^3.4.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.1.6",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-hook-form": "^5.6.1",
"react-hot-loader": "^4.13.0",
"react-icons": "^3.11.0",
"react-imported-component": "^6.3.13",
"react-loader-spinner": "^3.1.14",
"react-rating": "^2.0.5",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"react-table": "^7.5.1",
"react-tabs": "^3.1.1",
"sanitize.css": "^12.0.1",
"snyk": "^1.398.0",
"styled-components": "^5.2.0",
"tabletop": "^1.6.3",
"typeface-bungee-shade": "^0.0.71",
"typeface-fugaz-one": "^0.0.72",
"use-media": "^1.4.0",
"yup": "^0.29.3"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.11.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-stylelint": "^12.0.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react-scripts": "^3.4.3",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.0.2"
},
"alias": {
"react-dom": "@hot-loader/react-dom"
},
"lint-staged": {
"*.js": [
"eslint . --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
],
"*.css": [
"stylelint",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"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"
]
},
"snyk": true
}