-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.65 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.65 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
{
"name": "test-task-layout",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"eslint": "eslint . --ext .ts,.tsx --ignore-path .gitignore",
"eslint:fix": "eslint --fix . --ext .ts,.tsx --ignore-path .gitignore",
"stylelint": "stylelint src/styles/**/*.{sass,scss}",
"stylelint:fix": "stylelint --fix src/styles/**/*.{sass,scss}",
"format": "prettier --check . --ignore-path .gitignore",
"format:fix": "prettier -w . --ignore-path .gitignore"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.5.2",
"@reduxjs/toolkit": "^1.8.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.2.1",
"@types/circular-dependency-plugin": "^5.0.5",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-redux": "^7.1.23",
"@types/react-scroll": "^1.8.3",
"axios": "^0.26.1",
"circular-dependency-plugin": "^5.2.2",
"classnames": "^2.3.1",
"formik": "^2.2.9",
"react": "^17.0.2",
"react-app-rewired": "^2.2.1",
"react-dom": "^17.0.2",
"react-image": "^4.0.3",
"react-redux": "^7.2.6",
"react-scripts": "5.0.0",
"react-scroll": "^1.8.6",
"redux": "^4.1.2",
"typescript": "^4.6.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"postcss": "^8.4.12",
"prettier": "^2.6.1",
"sass": "^1.49.9",
"stylelint": "^14.6.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
"stylelint-prettier": "^2.0.0",
"stylelint-webpack-plugin": "^3.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}