-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.53 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
{
"name": "moviecat",
"version": "0.2.8",
"description": "Record from camera or screen and save as a movie.",
"productName": "MovieCat",
"author": "jankstar <[email protected]>",
"private": true,
"scripts": {
"build": "env GOOS=linux GOARCH=amd64 go build -o server main.go && quasar build -m pwa",
"start": "/home/site/wwwroot/server",
"dev": "env PORT=8081 go run main.go & quasar -m pwa -d",
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{ts,js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@quasar/babel-preset-app": "^2.0.2",
"@quasar/extras": "^1.16.9",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"quasar": "^2.16.4",
"ts-ebml": "^2.0.2",
"vue": "^3.4.31",
"vue-i18n": "^9.8.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@quasar/app-vite": "^1.9.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.19.2",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.6",
"workbox-build": "^7.0.0",
"workbox-cacheable-response": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0"
},
"engines": {
"node": "^22 || ^20 || ^19 || ^18 || ^16 || ^14.19",
"npm": ">= 6.8.1"
}
}