generated from Platzi-Master-C8/gethired-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.4 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "gethired-base",
"version": "1.1.0",
"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",
"test": "jest"
},
"resolutions": {
"@mui/utils": "5.2.2",
"@mui/material": "5.2.1"
},
"dependencies": {
"@emotion/react": "11.6.0",
"@emotion/styled": "11.6.0",
"@master-c8/commons": "^0.1.10",
"@master-c8/icons": "^0.1.3",
"@master-c8/theme": "^0.1.9",
"@mui/icons-material": "5.1.1",
"@mui/lab": "^5.0.0-alpha.65",
"@mui/material": "5.2.1",
"@mui/private-theming": "5.1.1",
"@mui/styled-engine": "5.1.1",
"@mui/styled-engine-sc": "5.1.0",
"@mui/styles": "^5.2.2",
"@mui/system": "^5.2.2",
"@mui/utils": "^5.3.0",
"@reduxjs/toolkit": "^1.7.0",
"chart.js": "^3.6.2",
"date-fns": "^2.28.0",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-chartjs-2": "^4.0.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.27.1",
"react-redux": "^7.2.6",
"react-router-dom": "6.0.2",
"redux-persist": "^6.0.0",
"styled-components": "5.3.3"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.26.0",
"babel-eslint": "10.1.0",
"babel-jest": "^27.4.2",
"babel-loader": "8.2.3",
"clean-webpack-plugin": "4.0.0",
"css-loader": "6.5.1",
"dotenv": "^16.0.0",
"dotenv-webpack": "^7.0.3",
"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",
"jest": "^27.4.3",
"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"
]
},
"jest": {
"verbose": true,
"modulePaths": [
"node_modules",
"<rootDir>/src"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js",
"^Components(.*)": "<rootDir>/src/components/$1",
"^Constants(.*)": "<rootDir>/src/constants/$1",
"^App(.*)": "<rootDir>/src/app/$1",
"^Services(.*)": "<rootDir>/src/services/$1",
"^Libs(.*)": "<rootDir>/src/Libs/$1",
"^Hooks(.*)": "<rootDir>/src/hooks/$1"
}
}
}