-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.65 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
{
"name": "vite-react-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://bamazon.jarrodwhitley.com",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"start": "node server.js",
"lint": "eslint .",
"preview": "vite preview",
"postbuild": "cp CNAME build/ && cp -r favicon build/",
"deploy": "rm -rf node_modules/.cache/gh-pages && npm run build && npm run postbuild && gh-pages -d build"
},
"dependencies": {
"@formspree/react": "^2.5.1",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@reduxjs/toolkit": "^2.4.0",
"@stripe/react-stripe-js": "^4.0.2",
"@stripe/stripe-js": "^1.54.2",
"animate.css": "^4.1.1",
"dotenv": "^16.4.7",
"gh-pages": "^6.2.0",
"mysql": "^2.18.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^7.0.2",
"react-search-autocomplete": "^8.5.2"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"express": "^4.21.2",
"globals": "^15.12.0",
"postcss": "^8.4.49",
"sass-embedded": "^1.81.0",
"tailwindcss": "^3.4.15",
"vite": "^5.4.10"
}
}