-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 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
66
67
68
69
70
71
72
73
{
"name": "files_recommendation",
"version": "1.4.0",
"description": "Shows recommended files in Nextcloud",
"main": "index.js",
"scripts": {
"build": "webpack --progress --config src/webpack.prod.js",
"dev": "webpack --progress --watch --config src/webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChristophWurst/files_recommendation.git"
},
"author": "Christoph Wurst",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ChristophWurst/files_recommendation/issues"
},
"homepage": "https://github.com/ChristophWurst/files_recommendation#readme",
"dependencies": {
"@nextcloud/axios": "^1.9.0",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^5.2.1",
"@nextcloud/vue-dashboard": "^1.1.0",
"babel-eslint": "^10.1.0",
"nextcloud-server": "^0.15.10",
"sass": "^1.49.10",
"v-tooltip": "^2.1.3",
"vue": "^2.6.14",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^2.1.0",
"@nextcloud/eslint-plugin": "^1.5.0",
"babel-loader": "^8.2.5",
"css-loader": "^5.2.7",
"eslint": "^6.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"stylelint": "^14.5.3",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-scss": "^3.21.0",
"stylelint-webpack-plugin": "^2.3.2",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": "^14.0.0",
"npm": "^7.0.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}