forked from Cere8ellum/react-starter-split-webpack-5-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.04 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
{
"main": "src/index.tsx",
"name": "react-starter-split-webpack-5-ts",
"config": {
"dev": "--config __webpack__/dev.config.js",
"prod": "--config __webpack__/prod.config.js"
},
"version": "1.0.0",
"description": "React Starter App using TS",
"homepage": "https://github.com/Cere8ellum/react-starter-split-webpack-5-ts#readme",
"author": "Cere8ellum",
"scripts": {
"webpack-config-dev": "nodemon --watch \"./__webpack__/*\" --exec npm run start-dev",
"webpack-config-prod": "nodemon --watch \"./__webpack__/*\" --exec npm run start-prod",
"start-dev": "cross-env-shell webpack serve ${npm_package_config_dev}",
"start-prod": "cross-env-shell webpack serve ${npm_package_config_prod}",
"build-dev": "cross-env-shell webpack ${npm_package_config_dev}",
"build-prod": "cross-env-shell webpack ${npm_package_config_prod} --stats-children",
"clean": "rd /s /q build",
"lint": "eslint src --ext .js --ext .ts",
"lint-fix": "eslint src --ext .js --ext .ts --fix",
"test": "cross-env jest --config __jest__/jest.config.js",
"test-watch": "jest --watch --config __jest__/jest.config.js",
"test-coverage": "jest --coverage --config __jest__/jest.config.js"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"babel-jest": "^29.6.1",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.33.1",
"favicons": "^7.1.4",
"favicons-webpack-plugin": "^6.0.0",
"filemanager-webpack-plugin": "^8.0.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"image-minimizer-webpack-plugin": "^3.8.3",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"jest": "^29.5.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.6.2",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^2.0.22",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.0.0",
"react-refresh": "^0.14.0",
"redux-logger": "^3.0.6",
"sass-loader": "^13.3.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.13.7",
"@mui/material": "^5.13.7",
"@reduxjs/toolkit": "^1.9.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.1"
}
}