-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.93 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "videittous",
"version": "0.0.0",
"author": {
"email": "[email protected]",
"name": "Matías Surdi",
"url": "https://github.com/msurdi"
},
"homepage": "https://github.com/msurdi/videittous",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/msurdi/videittous/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/msurdi/videittous.git"
},
"license": "MIT",
"scripts": {
"dev": "dotenv vite",
"build": "run-s copy:ffmpeg build:vite",
"build:vite": "vite build",
"copy:ffmpeg": "mkdir -p public/ffmpeg && cp -r node_modules/@ffmpeg/core/dist/* public/ffmpeg/",
"serve": "vite preview",
"start": "node server",
"deploy": "dotenv run-s deploy:setup deploy:push",
"deploy:setup": "git remote | grep dokku || git remote add dokku ${DOKKU_USER:-dokku}@${DOKKU_HOST:-example.com}:${DOKKU_APP:-vide}",
"deploy:push": "git push --force dokku main:master"
},
"devDependencies": {
"@ffmpeg/core": "^0.10.0",
"@ffmpeg/ffmpeg": "^0.10.1",
"@vitejs/plugin-vue": "^1.2.5",
"@vue/compiler-sfc": "^3.0.5",
"@xstate/inspect": "^0.4.1",
"@xstate/vue": "^0.8.0",
"autoprefixer": "^10.3.1",
"daisyui": "^1.10.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.14.0",
"feather-icons": "^4.28.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.7",
"vite": "^2.4.3",
"vue": "^3.0.5",
"vue-feather": "^2.0.0-rc",
"vue-router": "^4.0.10",
"xstate": "^4.23.1"
},
"engines": {
"node": "16",
"npm": "7"
},
"dependencies": {
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0"
}
}