-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 937 Bytes
/
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
{
"name": "ay-player",
"private": true,
"version": "0.0.0",
"scripts": {
"vite:dev": "vite",
"vite:build": "vite build",
"preview": "vite preview",
"tailwind:watch": "npx tailwindcss -i ./src/styles/App.css -o ./src/tailwind/output.css --watch",
"tailwind:build": "npx tailwindcss -o ./src/tailwind/output.css --minify",
"build": "npm run vite:build && npm run tailwind:build",
"dev": "start npm run tailwind:watch && npm run vite:dev",
"fixed:issue": "npm run build && git add * && git commit -m \"fixed an issue\" && git push origin master && npm run preview"
},
"dependencies": {
"daisyui": "^2.2.0",
"nodemon": "^2.0.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-router-dom": "^6.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@vitejs/plugin-react": "^1.0.7",
"tailwindcss": "^3.0.23",
"vite": "^2.8.0"
}
}