-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "learn-react",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "npm-run-all lint:*",
"lint:js": "eslint \"src/**/*.{js,jsx}\"",
"lint:style": "stylelint \"src/**/*.{css,scss}\""
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"axios": "^1.2.1",
"body-scroll-lock": "^4.0.0-beta.0",
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-clamp-lines": "^3.0.3",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.1",
"react-simple-star-rating": "^5.1.7",
"react-transition-group": "^4.4.5",
"redux-persist": "^6.0.0",
"sass": "^1.56.1",
"swiper": "^8.4.5"
},
"devDependencies": {
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.8",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"stylelint": "^14.16.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"vite": "^3.2.3"
},
"pre-commit": [
"lint"
]
}