-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.07 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.07 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
{
"name": "authcoreadmin",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite --host",
"dev:moicen": "mode=moicen vite --host",
"build:moicen": "mode=moicen vite build",
"deploy:moicen": "mode=moicen VITE_BASE=/authcoreadmin/ vite build && tar czf dist.tar.gz -C dist . && scp dist.tar.gz moicen:/tmp/ && ssh moicen 'sudo rm -rf /usr/local/openresty/nginx/html/authcoreadmin/assets /usr/local/openresty/nginx/html/authcoreadmin/index.html && sudo tar xzf /tmp/dist.tar.gz -C /usr/local/openresty/nginx/html/authcoreadmin/ && sudo chmod -R o+rx /usr/local/openresty/nginx/html/authcoreadmin/ && rm /tmp/dist.tar.gz' && rm dist.tar.gz",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.4.0",
"dayjs": "^1.11.8",
"vue": "^3.3.2",
"vue-router": "^4.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^5.0.0",
"postcss": "^8.5.14",
"tailwindcss": "^4.3.0",
"typescript": "~5.3.3",
"vite": "^5.4.0"
}
}