-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
{
"name": "gh-trends",
"version": "0.1.0",
"main": "./src/index.js",
"author": "jayjamesjay",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.5",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@testing-library/react": "^14.2.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"jsdoc": "^4.0.2",
"prettier": "^3.2.5",
"react-test-renderer": "^18.3.1",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"format": "prettier --write src/**/*.{js,jsx,html}",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint ./src/**/*.jsx ./src/**/*.js",
"lintfix": "yarn lint --fix",
"doc": "jsdoc ./src/components -d ./docs",
"prepare": "husky install"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"react-router-dom": "^6.28.0",
"redux": "^5.0.1",
"styled-components": "^6.1.14",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js"
},
"testEnvironment": "jsdom"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"packageManager": "[email protected]"
}