-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.77 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
{
"name": "my-project",
"version": "1.1.0",
"homepage": "https://nataliailina.github.io/react-examples/",
"private": false,
"description": "My project",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode=production",
"start:develop": "cross-env NODE_ENV=development webpack-dev-server",
"lint:js": "eslint src/**/*.ts src/**/*.tsx",
"lint:fix": "npm run lint:js -- --fix"
},
"dependencies": {
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@mui/icons-material": "5.10.9",
"@mui/material": "5.10.13",
"@reduxjs/toolkit": "1.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.5",
"react-router-dom": "6.4.3"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/eslint-parser": "7.19.1",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@emotion/babel-plugin": "11.10.5",
"@trivago/prettier-plugin-sort-imports": "3.4.0",
"@types/react-dom": "18.0.8",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"babel-loader": "9.1.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "2.0.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"prettier": "2.7.1",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "9.4.1",
"typescript": "4.8.4",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1"
}
}