-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 879 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 879 Bytes
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": "red-engine",
"version": "1.0.0",
"description": "RED Engine with Tailwind CSS",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"typecheck": "vue-tsc --noEmit",
"build:tailwind": "tailwindcss -i ./internal/router/static/tailwind-input.css -o ./internal/router/static/tailwind.css --minify",
"watch:tailwind": "tailwindcss -i ./internal/router/static/tailwind-input.css -o ./internal/router/static/tailwind.css --watch"
},
"dependencies": {
"vue": "^3.5.0",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@vitejs/plugin-vue": "^5.2.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^4.3.0",
"typescript": "^5.7.0",
"vite": "^8.0.16",
"vue-tsc": "^2.2.0"
},
"author": "",
"license": "ISC"
}