-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "firstrunwizard",
"description": "A first run wizard that explains the usage of Nextcloud to new users",
"version": "4.0.0",
"author": "Julius Härtl <jus@bitgrid.net>",
"license": "AGPL-3.0-or-later",
"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 src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint src/**/*.scss src/**/*.vue --fix"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/dialogs": "^5.3.7",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.19.0",
"vue": "^2.7.16",
"vue-frag": "^1.4.3"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/stylelint-config": "^3.0.1",
"@nextcloud/typings": "^1.9.1",
"@nextcloud/vite-config": "^1.4.2",
"@vue/tsconfig": "^0.5.1",
"sass": "^1.81.0",
"vite": "^5.4.11"
}
}