-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·72 lines (72 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·72 lines (72 loc) · 2.24 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
{
"name": "files_scripts",
"description": "Nextcloud app for running custom scripts on files.",
"version": "5.0.1",
"author": "Raul Ferreira Fuentes <r.ferreira.fuentes@gmail.com>",
"homepage": "https://github.com/",
"license": "agpl",
"private": true,
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"serve": "webpack --node-env development serve --progress",
"lint": "eslint --ext .ts,.vue src",
"lint:fix": "eslint --ext .ts,.vue src --fix",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix"
},
"dependencies": {
"@mdi/svg": "^7.3.67",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/dialogs": "^7.3.2",
"@nextcloud/event-bus": "^3.3.2",
"@nextcloud/files": "^4.0.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/vue": "^8.37.0",
"codemirror": "5.65.5",
"vue": "^2.7.14",
"vue-class-component": "^7.2.6",
"vue-codemirror": "^4.0.6",
"vue-material-design-icons": "^5.2.0",
"vue-property-decorator": "^9.1.2",
"vuex": "^3.6.2"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^18.0.0",
"npm": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@babel/register": "^7.22.15",
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^8.0.0",
"@nextcloud/stylelint-config": "^2.3.1",
"@nextcloud/webpack-vue-config": "^6.3.2",
"@types/codemirror": "^5.60.5",
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"eslint": "^8.18.0",
"node-polyfill-webpack-plugin": "^4.0.0",
"postcss": "^8.4.32",
"sass": "^1.52.1",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.3.0",
"typescript": "^5.0.2",
"vue-eslint-parser": "^9.0.3",
"vue-loader": "^15.9.8",
"webpack": "^5.72.1",
"webpack-cli": "^6.0.1"
}
}