-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.31 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.31 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "pro-frontend-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --env port=3000",
"build:prod": "webpack --env mode=production",
"build:dev": "webpack --env mode=development",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"stylelint": "npx stylelint \"**/*.scss\"",
"stylelint:fix": "npx stylelint \"**/*.scss\" --fix",
"jest:init": "jest --init",
"unit": "jest --config ./config/jest/jest.config.ts",
"analyze:prod": "STATS=server webpack --env mode=production",
"analyze:dev": "STATS=server webpack --env mode=development"
},
"keywords": [],
"author": "Tatiana Sysueva",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.21.5",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@emotion/eslint-plugin": "11.10.0",
"@svgr/webpack": "6.5.1",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.3",
"@types/jest": "27.4.1",
"@types/lodash": "4.14.194",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/react-input-mask": "^3.0.2",
"@types/react-router-dom": "5.3.3",
"@types/webpack": "5.28.0",
"@types/webpack-bundle-analyzer": "4.4.1",
"@types/webpack-dev-server": "4.7.2",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"css-loader": "6.7.3",
"date-fns": "2.29.3",
"eslint": "8.39.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-i18next": "6.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.10.3",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"mini-css-extract-plugin": "2.5.3",
"prettier": "2.8.8",
"prettier-package-json": "2.8.0",
"prettier-plugin-sort-json": "1.0.0",
"react-input-mask": "^2.0.4",
"react-select": "^5.7.3",
"regenerator-runtime": "0.13.9",
"resolve-url-loader": "^5.0.0",
"sass": "1.62.1",
"sass-loader": "12.6.0",
"style-loader": "3.3.1",
"stylelint": "^15.6.1",
"stylelint-config-clean-order": "^5.0.1",
"stylelint-config-standard-scss": "^9.0.0",
"ts-loader": "9.2.6",
"ts-node": "10.5.0",
"typescript": "4.5.5",
"typescript-plugin-css-modules": "4.1.1",
"webpack": "5.75.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "4.7.4"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@reduxjs/toolkit": "^1.9.5",
"@types/react-redux": "^7.1.25",
"axios": "^1.4.0",
"copy-webpack-plugin": "^10.2.4",
"i18next": "22.4.10",
"lodash": "4.17.21",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.43.2",
"react-i18next": "11.15.5",
"react-icons": "4.7.1",
"react-redux": "^8.0.7",
"react-router-dom": "6.2.1",
"react-use": "17.4.0",
"zod": "3.20.6"
}
}