-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
{
"name": "new-webapp",
"version": "0.0.1",
"description": "The lightinator",
"productName": "Lightinator",
"author": "Peter Jakobs <pjakobs@mobileme.de>",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint --ext .js,.vue ./",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"dev": "quasar dev",
"build": "quasar build "
},
"dependencies": {
"@intlify/unplugin-vue-i18n": "^11.0.0",
"@quasar/cli": "^2.5.0",
"@quasar/extras": "^1.16.16",
"@vue/eslint-config-standard": "^9.0.0",
"pinia": "^3.0.3",
"quasar": "^2.17.7",
"vue": "^3.5.8",
"vue-i18n": "^11.1.0",
"vue-router": "^4.4.5",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^11.0.0",
"@quasar/app-vite": "^2.3.0",
"@vue/devtools": "^8.0.1",
"autoprefixer": "^10.4.17",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-quasar": "^1.1.0",
"eslint-plugin-vue": "^10.0.0",
"postcss": "^8.5.1",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^6.0.3",
"vite": "^7.1.5"
},
"engines": {
"node": ">=20",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}