-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
75 lines (75 loc) · 1.97 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
{
"name": "developer-profile",
"version": "2.0.0",
"private": true,
"homepage": "",
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hookform/resolvers": "^2.9.11",
"@mui/material": "^5.11.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"axios": "^1.3.4",
"bootstrap": "^5.2.3",
"dompurify": "^3.0.1",
"isomorphic-dompurify": "^1.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-recaptcha": "^2.1.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.43.7",
"react-icons": "^4.8.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.9.0",
"react-scroll-up": "^1.3.7",
"react-scrollspy": "^3.4.3",
"react-spinners": "^0.13.8",
"react-tabs": "^6.0.0",
"react-text-loop": "^2.3.0",
"react-tsparticles": "^1.37.5",
"web-vitals": "^3.3.0",
"yup": "^1.0.2"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "cross-env ESLINT_NO_DEV_ERRORS='true' vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest --watch",
"coverage": "vitest run --coverage",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx --fix ./src"
},
"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"
]
},
"devDependencies": {
"@vitejs/plugin-react": "^3.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"sass": "^1.59.3",
"vite": "^4.2.1",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.29.7"
}
}