-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 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
{
"name": "vite-vue-starter",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "nodemon src/server/main.js -w src/server",
"start": "NODE_ENV=production node src/server/main.js",
"build": "vite build",
"push": "docker push anonindustries/example_image:latest",
"tag": "docker tag example_image:latest anonindustries/example_image:latest",
"ship": "yarn run dockerBuild && yarn run tag && yarn run push",
"dockerBuild": "docker build -t example_image ."
},
"dependencies": {
"@quasar/extras": "^1.16.4",
"axios": "^1.4.0",
"express": "^4.18.2",
"helmet": "^7.0.0",
"libsodium-wrappers": "^0.7.11",
"qrcode": "^1.5.3",
"quasar": "^2.12.0",
"vite-express": "*",
"vue": "^3.2.45"
},
"devDependencies": {
"@quasar/vite-plugin": "^1.3.3",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.14",
"nodemon": "^2.0.20",
"postcss": "^8.4.23",
"sass": "1.32.12",
"tailwindcss": "^3.3.2",
"vite": "^4.0.4"
}
}