-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.75 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.75 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "portfolio",
"version": "1.0.0",
"description": "Malaba's portfolio",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage --colors",
"build": "webpack --mode production",
"start": "webpack serve",
"dev": "webpack serve --mode=development --open --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Malaba6/portfolio.git"
},
"keywords": [
"eric",
"malaba",
"mashauri",
"front-end",
"developer"
],
"author": "Eric Malaba",
"license": "ISC",
"bugs": {
"url": "https://github.com/Malaba6/portfolio/issues"
},
"homepage": "https://github.com/Malaba6/portfolio#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"enzyme": "^3.11.0",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"eslint-webpack-plugin": "^2.5.4",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"jest": "^27.0.4",
"jest-canvas-mock": "^2.3.1",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@material-ui/core": "^4.12.0",
"@material-ui/icons": "^4.11.2",
"cors": "^2.8.5",
"css-loader": "^5.2.6",
"emailjs-com": "^3.2.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"image-webpack-loader": "^7.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.4",
"style-loader": "^3.0.0"
},
"jest": {
"setupFiles": [
"jest-canvas-mock",
"<rootDir>/window.setup.js"
],
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/enzyme.config.js"
],
"modulePaths": [
"src/components",
"__tests__"
],
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx",
"node"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.js",
"<rootDir>/src/**/*.jsx",
"!<rootDir>/src/index.js",
"!<rootDir>/coverage/**/*.*",
"!<rootDir>/build/**/*.*",
"!<rootDir>/cypress/**/*.*"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 90,
"statements": 90
}
},
"moduleNameMapper": {
"\\.(jpg|JPG|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"engines": {
"node": "16.4.2"
}
}