-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.1 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
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
{
"name": "client",
"homepage": " https://adv555.github.io/client",
"version": "0.1.0",
"author": "test",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.2",
"@react-oauth/google": "^0.11.1",
"axios": "^1.5.0",
"bulma": "^0.9.4",
"classnames": "^2.3.1",
"formik": "^2.4.3",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-content-loader": "^6.2.1",
"react-dom": "^18.2.0",
"react-responsive-modal": "^6.4.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.1.3",
"react-use": "^17.4.0",
"sass": "^1.66.1",
"stylelint": "^13.13.1",
"swiper": "^10.2.0"
},
"devDependencies": {
"@mate-academy/eslint-config-react-typescript": "^1.0.11",
"@mate-academy/stylelint-config": "*",
"@types/lodash": "^4.14.197",
"@types/node": "^17.0.45",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "3.0.2",
"typescript": "^5.2.2"
},
"overrides": {
"typescript": "^5.2.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "rm -rf build && npm run build",
"deploy": "gh-pages -d build",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:style": "stylelint \"src/**/*.{css,scss}\" --fix",
"fix-style": "npm run lint:style && npm run format && npm run lint -- --fix",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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": {
"*.{js,jsx,ts,tsx}": "npm run lint"
}
}