-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
90 lines (90 loc) · 2.64 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "flowupload",
"description": "A Nextcloud App to upload many large Files at once",
"version": "0.1.8",
"author": "Patrick Schwarz, <e-alfred>",
"contributors": [
"Jonathan Treffler <[email protected]>"
],
"keywords": [
"nextcloud",
"app",
"dev",
"vuejs"
],
"bugs": {
"url": "https://github.com/e-alfred/flowupload/issues"
},
"repository": {
"url": "https://github.com/e-alfred/flowupload",
"type": "git"
},
"homepage": "https://github.com/e-alfred/flowupload",
"license": "agpl",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.prod.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.dev.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix"
},
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@bundle-analyzer/webpack-plugin": "^0.5.1",
"@flowjs/flow.js": "^2.14.1",
"@nextcloud/axios": "^2.3.0",
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/eslint-config": "^5.1.0",
"@nextcloud/eslint-plugin": "^2.0.0",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^7.4.0",
"@nextcloud/webpack-vue-config": "^5.4.0",
"@vue/compiler-sfc": "^3.2.45",
"eslint": "^7.32.0",
"eslint-webpack-plugin": "^2.7.0",
"nextcloud-l10n": "^0.1.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"vue": "^2.6.14"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.20.2",
"@nextcloud/browserslist-config": "^2.3.0",
"@vue/test-utils": "^1.3.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"css-loader": "^6.7.3",
"eslint-config-nextcloud": "0.1.1",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-nextcloud": "^0.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^7.20.0",
"node-sass": "^8.0.0",
"sass-loader": "^10.2.0",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-scss": "^3.21.0",
"stylelint-webpack-plugin": "^3.3.0",
"vue-loader": "^15.10.1",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.75.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}