-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.23 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
{
"name": "react-avance",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/eslint-parser": "7.19.1",
"@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",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"babel-jest": "29.5.0",
"babel-loader": "9.1.2",
"babel-plugin-styled-components": "2.0.7",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.3",
"eslint": "8.36.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lint-staged": "13.2.0",
"mini-css-extract-plugin": "2.7.3",
"node-sass": "8.0.0",
"npm-check-updates": "16.7.12",
"prettier": "2.8.4",
"sass-loader": "13.2.0",
"source-map-loader": "4.0.1",
"terser-webpack-plugin": "5.3.7",
"webpack": "5.76.1",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1"
},
"dependencies": {
"axios": "1.3.4",
"classnames": "2.3.2",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "3.39.3",
"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",
"styled-components": "5.3.8"
},
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"test": "jest src --watch --no-cache",
"test-coverage": "jest src --coverage",
"test-all": "jest src",
"ncuu": "ncu -u"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy",
"^(app)/(.*)$": "<rootDir>/src/$1/$2",
"^(components)/(.*)$": "<rootDir>/src/$1/$2"
},
"testEnvironment": "jsdom"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}