-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 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
49
50
51
52
53
{
"name": "photobooth-app",
"version": "2.0.0",
"description": "photobooth-app frontend",
"productName": "Photobooth-App",
"author": "michael <[email protected]>",
"type": "module",
"private": true,
"scripts": {
"lint": "eslint ./**/*.{js,ts,mjs,cjs,vue}",
"lint:fix": "eslint --fix ./**/*.{js,ts,mjs,cjs,vue}",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"dev": "quasar dev",
"build": "quasar build"
},
"dependencies": {
"@jsonforms/core": "^3.2.1",
"@jsonforms/vue": "^3.2.1",
"@quasar/extras": "^1.16.13",
"@vueuse/core": "^11.0.0",
"pinia": "^2.1.7",
"qrcode": "^1.5.3",
"quasar": "^2.17.3",
"vue": "^3.4.18",
"vue-i18n": "^10.0.0",
"vue-qrcode": "^2.2.2",
"vue-router": "^4.3.2",
"vue-sse": "^2.5.2"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@intlify/unplugin-vue-i18n": "^6.0.0",
"@quasar/app-vite": "^2.0.0-rc.2",
"@types/lodash": "^4.17.1",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.26.0",
"prettier": "^3.2.5",
"typescript": ">=5.4.5",
"vite-plugin-checker": "^0.8.0",
"vue-tsc": "^2.0.0"
},
"engines": {
"node": "^24 || ^22 || ^20 || ^18",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}