-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
{
"name": "react-es6-formation",
"version": "1.1.0",
"private": true,
"devDependencies": {
"@babel/core": "7.21.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/runtime": "7.21.0",
"@cypress/react": "7.0.3",
"@testing-library/react": "14.0.0",
"@types/react": "18.0.30",
"babel-jest": "29.5.0",
"babel-loader": "9.1.2",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"cypress": "12.8.1",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lint-staged": "13.2.0",
"mini-css-extract-plugin": "2.7.5",
"npm-check-updates": "16.8.0",
"prettier": "2.8.7",
"prop-types": "15.8.1",
"react-test-renderer": "18.2.0",
"source-map-loader": "4.0.1",
"webpack": "5.76.3",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.13.1"
},
"dependencies": {
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@mui/material": "5.11.14",
"@reduxjs/toolkit": "1.9.3",
"@tanstack/react-query": "4.28.0",
"axios": "1.3.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.5",
"react-router": "6.9.0",
"react-router-dom": "6.9.0",
"redux": "4.2.1",
"redux-thunk": "2.4.2",
"typeface-roboto": "1.1.13"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"itest-debug": "cypress open --config-file cypress/cypress.config.js",
"itest": "cypress run --browser chrome --config-file cypress/cypress.config.js",
"ncuu": "ncu -u",
"prepare": "husky install",
"start": "webpack serve --mode development",
"starti": "webpack serve --mode development --config=./itest/webpack.config.itest.js",
"test": "jest src",
"test-coverage": "jest src --coverage"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"testEnvironment": "jsdom"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"engines" : {
"node" : ">=16.0.0"
}
}