-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.57 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
{
"name": "library.cleverland",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"cy": "cypress open",
"e2e": "start-server-and-test start http-get://localhost:3000 cy",
"e2e:run": "start-test 3000 'cypress run'",
"lint": "eslint --ext=js,jsx,ts,tsx src",
"lint:fix": "eslint --fix --ext=js,jsx,ts,tsx src"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"arui-presets-lint": "^6.0.1",
"cypress": "^11.0.1",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-dirnames": "^1.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^44.0.2",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prettier-eslint": "^14.0.2",
"prettier-eslint-cli": "^5.0.1",
"sass": "^1.57.1",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.8.1",
"stylelint-config-standard": "^29.0.0",
"stylelint-prettier": "^2.0.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.2",
"axios": "^1.3.2",
"classnames": "^2.3.2",
"lottie-react": "^2.3.1",
"mochawesome": "^7.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.2",
"react-scripts": "^5.0.1",
"swiper": "^9.0.3",
"web-vitals": "^3.0.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier-eslint --write",
"eslint"
],
"src/**/*.{css,scss,sass}": [
"prettier --write"
]
}
}