-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "dashlink",
"version": "1.1.0",
"description": "Dashboard widget for external website links",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development webpack --mode development --watch",
"build": "NODE_ENV=production webpack --mode production",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint 'css/**/*.scss' 'src/**/*.vue'",
"stylelint:fix": "stylelint 'css/**/*.scss' 'src/**/*.vue' --fix"
},
"keywords": [
"nextcloud",
"dashboard",
"links"
],
"author": "Your Name",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/router": "^3.0.0",
"@nextcloud/vue": "^9.3.0",
"debounce": "^3.0.0",
"linkifyjs": "^4.3.2",
"vue": "^3.4.0",
"vue-material-design-icons": "^5.3.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.0",
"@nextcloud/stylelint-config": "^3.0.0",
"@nextcloud/webpack-vue-config": "^6.0.1",
"@vue/test-utils": "^2.4.4",
"ajv": "^8.17.1",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.21.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"process": "^0.11.10",
"sass": "^1.71.0",
"sass-loader": "^14.1.0",
"style-loader": "^3.3.4",
"vue-loader": "^17.4.2",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
}
}