-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
executable file
·69 lines (69 loc) · 2.15 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "files_scripts",
"description": "Nextcloud app for running custom scripts on files.",
"version": "4.1.0",
"author": "Raul Ferreira Fuentes <[email protected]>",
"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": {
"@nextcloud/axios": "^2.3.0",
"@nextcloud/dialogs": "^5.0.3",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/files": "^3.0.0",
"@nextcloud/router": "^2.0.1",
"@nextcloud/vue": "^8.3.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",
"@mdi/svg": "^7.3.67"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^14.0.0",
"npm": "^7.0.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/eslint-config": "^8.0.0",
"@nextcloud/stylelint-config": "^2.3.1",
"@nextcloud/webpack-vue-config": "^6.0.0",
"@types/codemirror": "^5.60.5",
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.29.0",
"@vue/tsconfig": "^0.4.0",
"css-loader": "^6.7.1",
"eslint": "^8.18.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"postcss": "^8.4.32",
"sass": "^1.52.1",
"sass-loader": "^13.1.0",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.3.0",
"@babel/register": "^7.22.15",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"typescript": "^5.0.2",
"vue-eslint-parser": "^9.0.3",
"style-loader": "^3.3.3",
"vue-loader": "^15.9.8",
"webpack": "^5.72.1",
"webpack-cli": "^5.0.2"
}
}