-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.62 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": "{{project_name}}-frontend",
"version": "0.0.1",
"private": true,
"description": "{{project_name}} frontend.",
"engines": {
"node": ">=18 <19"
},
"main": "index.js",
"prettier": "eslint-config-vinta/prettier",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"test:update": "npm test -- --u",
"start": "babel-node server.js",
"build": "NODE_ENV=production webpack --progress --config webpack.prod.config.js --bail",
"lint": "eslint frontend",
"coverage": "jest --coverage"
},
"dependencies": {
"@babel/cli": "~7.22.5",
"@reduxjs/toolkit": "~1.9.5",
"@sentry/browser": "~7.57.0",
"@types/react": "~18.2.8",
"axios": "~1.4.0",
"bootstrap": "~5.3.0",
"classnames": "~2.3.2",
"cookie": "~0.5.0",
"lodash": "~4.17.21",
"marked": "~5.1.0",
"prop-types": "~15.8.1",
"react": "~18.2.0",
"react-bootstrap": "~2.8.0",
"react-dom": "~18.2.0",
"react-redux": "~8.1.0",
"react-refresh": "~0.14.0",
"react-router": "~6.14.1"
},
"devDependencies": {
"@babel/core": "~7.13.10",
"@babel/eslint-parser": "~7.21.8",
"@babel/eslint-plugin": "~7.19.1",
"@babel/node": "~7.13.10",
"@babel/preset-env": "~7.22.4",
"@babel/preset-react": "~7.22.3",
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.10",
"@testing-library/jest-dom": "~5.16.5",
"@testing-library/react": "~14.0.0",
"@testing-library/user-event": "~14.4.3",
"ajv": "~8.12.0",
"autoprefixer": "~9.8.6",
"babel-jest": "~29.5.0",
"babel-loader": "~9.1.2",
"circular-dependency-plugin": "~5.2.2",
"css-loader": "~6.8.1",
"eslint": "~8.42.0",
"eslint-config-prettier": "~8.3.0",
"eslint-config-vinta": "~2.0.0",
"eslint-import-resolver-webpack": "~0.13.2",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-jest": "~26.0.0",
"eslint-plugin-jsx-a11y": "~6.7.1",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-react": "~7.32.2",
"eslint-plugin-react-hooks": "~4.6.0",
"eslint-plugin-sonarjs": "~0.11.0",
"eslint-plugin-unicorn": "~40.1.0",
"identity-obj-proxy": "~3.0.0",
"jest": "~29.5.0",
"jest-environment-jsdom": "~29.5.0",
"mini-css-extract-plugin": "~2.7.6",
"postcss": "~8.4.24",
"postcss-loader": "~7.3.2",
"prettier": "~2.8.8",
"redux-mock-store": "~1.5.4",
"sass": "~1.62.1",
"sass-loader": "~13.3.1",
"style-loader": "~3.3.3",
"webpack": "~5.85.1",
"webpack-bundle-tracker": "~2.0.0",
"webpack-cli": "~5.1.3",
"webpack-dev-server": "~4.15.0",
"whatwg-fetch": "~3.6.2"
}
}