-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.45 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ecommerce-application1",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.22.11",
"@commercetools/api-request-builder": "^6.0.0",
"@commercetools/platform-sdk": "^5.0.0",
"@commercetools/sdk-client-v2": "^2.2.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.16",
"@heroicons/react": "^2.0.18",
"@material-ui/core": "^4.12.4",
"@mui/icons-material": "^5.14.3",
"@mui/lab": "^5.0.0-alpha.143",
"@mui/material": "^5.14.7",
"@mui/styles": "^5.14.7",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.197",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/toastify-js": "^1.12.0",
"babel-loader": "^9.1.3",
"dayjs": "^1.11.9",
"formik": "^2.4.3",
"formik-material-ui": "^4.0.0-alpha.2",
"i18next": "^23.4.6",
"postcode-validator": "^3.8.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.1",
"react-redux": "^8.1.2",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.14.2",
"react-scripts": "5.0.1",
"sass": "^1.64.2",
"toastify-js": "^1.12.0",
"yup": "^1.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll=false",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react/recommended",
"standard-with-typescript",
"plugin:jsx-a11y/recommended"
],
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"react",
"jsx-a11y"
],
"rules": {
"@typescript-eslint/semi": [
"error",
"always"
],
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/member-delimiter-style": "off",
"react/react-in-jsx-scope": "off",
"react/jsx-uses-react": "off",
"no-console": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.22.10",
"@tailwindcss/forms": "^0.5.4",
"@types/react-slick": "^0.23.10",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.1",
"husky": "^8.0.3",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
}
}