-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.15 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
{
"name": "gethired-base",
"version": "1.0.3",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack server --mode development",
"build": "webpack --mode production",
"analize": "webpack-bundle-analyzer dist/stats.json",
"lint": "eslint ./src/**/*.js[x] && prettier --check \"src/**/*.(jsx|js)\"",
"lint:fix": "eslint ./src/**/*.js[x] --fix && prettier -w \"src/**/*.(jsx|js)\"",
"prepare": "husky install && git config commit.template .github/GIT_COMMIT_TEMPLATE",
"precommit": "lint-staged"
},
"resolutions": {
"@mui/utils": "latest",
"@mui/material": "^5.3.1"
},
"dependencies": {
"@auth0/auth0-react": "^1.9.0",
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "^5.3.0",
"@mui/lab": "latest",
"@mui/material": "latest",
"@mui/styles": "latest",
"@mui/x-data-grid": "^5.3.0",
"axios": "^0.25.0",
"clsx": "^1.1.1",
"date-fns": "2.25.0",
"dotenv": "^15.0.0",
"history": "5.0.1",
"nprogress": "0.2.0",
"numeral": "2.0.6",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-custom-scrollbars-2": "latest",
"react-dom": "latest",
"react-helmet-async": "latest",
"react-router": "latest",
"react-router-dom": "latest",
"react-scripts": "4.0.3",
"stylis": "4.0.10",
"stylis-plugin-rtl": "2.1.0",
"uuid": "^8.3.2",
"web-vitals": "2.1.2"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "4.0.0",
"eslint": "8.3.0",
"eslint-config-airbnb": "19.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"html-loader": "3.0.1",
"html-webpack-plugin": "5.5.0",
"husky": ">=6",
"lint-staged": ">=10",
"mini-css-extract-plugin": "2.4.5",
"node-sass": "6.0.1",
"prettier": "2.4.1",
"sass": "1.43.4",
"sass-loader": "12.3.0",
"style-loader": "3.3.1",
"webpack": "5.64.2",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.5.0"
},
"lint-staged": {
"src/**/*.js[x]": [
"eslint --cache --fix",
"prettier -w"
]
}
}