-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.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
{
"name": "react-testing-library-demo",
"version": "1.0.0",
"description": "This repo is react-testing-library demo repo for an article.",
"main": "index.js",
"author": "Toru Eguchi",
"license": "MIT",
"scripts": {
"bundle": "webpack",
"start": "webpack serve --mode development --open --hot",
"build": "webpack --mode production",
"tscheck": "tsc",
"lint": "eslint --ext .js,.ts,.jsx,.tsx src",
"format": "yarn lint --fix & yarn prettier --write 'src/**/*.{js,jsx,ts,tsx}'"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@types/node-fetch": "^2.6.13",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-redux": "^7.1.34",
"@types/react-router-dom": "^5.3.3",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-autofix": "^2.2.0",
"html-webpack-plugin": "^5.6.7",
"prettier": "^3.8.4",
"style-loader": "^4.0.0",
"typescript": "*",
"webpack": "^5.107.2",
"webpack-cli": "^7.0.3",
"webpack-dev-server": "^5.2.4"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.8",
"@mui/styles": "^5.10.8",
"@reduxjs/toolkit": "^1.9.2",
"isomorphic-unfetch": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.8.0",
"react-spinners": "^0.13.6",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.2"
}
}