-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "grocerylist",
"description": "Grocery list for Nextcloud",
"version": "0.0.2",
"author": "Tobias Kaminsky <[email protected]>",
"contributors": [],
"bugs": {
"url": "https://github.com/tobiasKaminsky/GroceryList/issues"
},
"repository": {
"url": "https://github.com/tobiasKaminsky/GroceryList",
"type": "git"
},
"homepage": "https://github.com/tobiasKaminsky/GroceryList",
"license": "agpl",
"private": true,
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint **/*.css **/*.scss **/*.vue",
"stylelint:fix": "stylelint **/*.css **/*.scss **/*.vue --fix"
},
"dependencies": {
"@melmacaluso/vue-modal": "^2.1.0",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/dialogs": "^5.3.7",
"@nextcloud/event-bus": "^3.3.1",
"@nextcloud/router": "^3.0.0",
"@nextcloud/vue": "8.19.0",
"pinia": "^2.1.7",
"vue": "^2.7.16",
"vue-dropdowns": "^1.1.2",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^3.5.1"
},
"devDependencies": {
"@nextcloud/browserslist-config": "3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/eslint-plugin": "^2.2.1",
"@nextcloud/vite-config": "^1.2.2",
"@vue/tsconfig": "^0.5.1",
"sass": "^1.79.2",
"vite": "^5.4.6"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}