-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
37
{
"name": "pandoc-web",
"version": "1.0.0",
"dependencies": {
"@mdi/font": "^7.2.96",
"axios": "^1.5.0",
"express": "^4.18.2",
"roboto-fontface": "^0.10.0",
"vue": "^3.3.4",
"vuetify": "^3.3.14"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/node": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@vitejs/plugin-vue": "^4.3.3",
"autoprefixer": "^10.4.15",
"concurrently": "^8.2.1",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"tailwindcss": "^3.3.3",
"vite": "^4.4.9",
"vite-plugin-vuetify": "^1.0.2"
},
"scripts": {
"_build-backend": "babel backend/src/main.js -d backend/dist",
"_start-backend": "babel-node backend/src/main.js",
"_build-frontend": "vite build",
"_start-frontend": "vite",
"build": "npm run _build-backend && npm run _build-frontend",
"dev": "concurrently --kill-others \"npm run _start-backend\" \"npm run _start-frontend\""
},
"engines": {
"node": "18"
}
}