-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"name": "blog-site",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npx prettier ./src/**/*.{js,jsx,css} --write && vite build",
"server": "npx json-server --watch data/db.json --port 3000 --delay 2000",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"format": "npx prettier ./src/**/*.{js,jsx,css} --write",
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"fecha": "^4.2.3",
"firebase": "^10.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-hook-form": "^7.44.3",
"react-loading-skeleton": "^3.3.1",
"react-router-dom": "^6.14.2",
"sticksy": "^0.2.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"daisyui": "^3.0.20",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.25.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"md5": "^2.3.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"vite": "^5.0.12"
},
"overrides": {
"semver": "^7.5.3"
}
}