-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.7 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
85
86
{
"name": "CookBook-frontend",
"version": "0.0.1",
"private": true,
"description": "CookBook frontend.",
"engines": {
"node": ">=18 <21"
},
"browserslist": "> 0.25%, not dead",
"main": "frontend/js/index.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"test:update": "npm test -- --u",
"dev": "webpack serve --mode=development --hot",
"build": "NODE_ENV=production webpack --progress --bail --mode=production",
"lint": "eslint frontend --fix",
"coverage": "jest --coverage"
},
"dependencies": {
"@ant-design/icons": "^5.3.0",
"@reduxjs/toolkit": "~2.0.1",
"@sentry/browser": "~7.88.0",
"@sentry/react": "~7.88.0",
"antd": "^5.14.1",
"axios": "~1.6.2",
"bootstrap": "~5.3.2",
"classnames": "~2.3.2",
"cookie": "~0.6.0",
"lodash": "~4.17.21",
"marked": "~11.1.0",
"react": "~18.2.0",
"react-bootstrap": "~2.9.1",
"react-dom": "~18.2.0",
"react-redux": "~9.0.4",
"react-router": "~6.21.0",
"react-router-dom": "^6.22.1"
},
"devDependencies": {
"@babel/core": "~7.23.6",
"@babel/eslint-parser": "~7.23.3",
"@babel/eslint-plugin": "~7.23.5",
"@babel/node": "~7.22.19",
"@babel/preset-env": "~7.23.6",
"@babel/preset-react": "~7.23.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@testing-library/jest-dom": "~6.1.5",
"@testing-library/react": "~14.1.2",
"@testing-library/user-event": "~14.5.1",
"ajv": "~8.12.0",
"babel-jest": "~29.7.0",
"babel-loader": "~9.1.3",
"circular-dependency-plugin": "~5.2.2",
"css-loader": "~6.8.1",
"eslint": "~8.56.0",
"eslint-config-vinta": "github:vintasoftware/eslint-config-vinta#9dd2803f4864a2e9942c636f78b367b4d5a56c67",
"eslint-import-resolver-webpack": "~0.13.8",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jest": "~27.6.0",
"eslint-plugin-jsx-a11y": "~6.8.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-react": "~7.33.2",
"eslint-plugin-react-hooks": "~4.6.0",
"eslint-plugin-sonarjs": "~0.23.0",
"eslint-plugin-unicorn": "~49.0.0",
"identity-obj-proxy": "~3.0.0",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "~2.7.6",
"postcss": "~8.4.32",
"postcss-loader": "~7.3.3",
"prettier": "~3.1.1",
"react-refresh": "^0.14.0",
"redux-mock-store": "~1.5.4",
"sass": "~1.69.5",
"sass-loader": "~13.3.2",
"style-loader": "~3.3.3",
"webpack": "~5.89.0",
"webpack-bundle-tracker": "~3.0.0",
"webpack-cli": "~5.1.4",
"webpack-dev-server": "~4.15.1",
"whatwg-fetch": "~3.6.20"
}
}