-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "paypal-react-donation",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@paypal/react-paypal-js": "^8.1.3",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"client-dev": "vite",
"client-build": "vite build",
"client-preview": "vite preview",
"server-dev": "nodemon server/server.js",
"start": "concurrently \"npm run client-dev\" \"npm run server-dev\"",
"prod": "npm run client-build && node server/server.js",
"format": "npx prettier --write **/*.{js,jsx,md}",
"format:check": "npx prettier --check **/*.{js,jsx,md}"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.15",
"daisyui": "^3.7.3",
"nodemon": "^3.0.1",
"postcss": "^8.4.29",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.3.3",
"vite": "^4.4.9"
}
}