-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.33 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
{
"name": "webpack-react",
"version": "1.0.0",
"description": "This is react project using webpack",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development --open",
"build": "webpack --mode production --config webpack.config.prod.js",
"lint": "npm run lint-fix && npm run lint-style",
"lint-js-fix": "npm run lint-fix -- --fix ",
"lint-fix": "eslint --fix './**/*.{js,ts,tsx}' --ignore-path .gitignore --color --max-warnings 7",
"lint-style": "stylelint 'src/**/*.scss'",
"lint-staged": "lint-staged",
"prepare": "husky install",
"pretty": "prettier 'src/**/*.js'",
"test": "jest"
},
"author": "momarm45 - Muhammad Omar Muneer",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.3.1",
"autoprefixer": "^10.4.18",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-hot-loader": "^1.4.4",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-control-statements": "3.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.34.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-standard": "5.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-html-reporters": "^3.1.7",
"jest-slow-test-reporter": "^1.0.0",
"lint-staged": "^15.2.2",
"mini-css-extract-plugin": "^2.8.1",
"node-sass": "^9.0.0",
"postcss-loader": "^8.1.1",
"prettier": "^3.2.5",
"react-refresh": "^0.14.0",
"sass-bulk-import-loader": "^0.1.1",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-scss": "^6.2.1",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.4.2",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"babel-plugin-styled-components": "^2.1.4",
"react": "^18",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router-dom": "6.22.3",
"styled-components": "^6.1.8"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"npm run lint-fix",
"npm run pretty",
"npm test"
],
"*.scss": [
"stylelint --fix --"
]
},
"keywords": [
"webpack",
"react",
"lint-staged",
"eslint",
"stylelint",
"styled-component"
]
}