forked from nickv-nextcloud/gadgetbridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.59 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
{
"name": "gadgetbridge",
"description": "A Nextcloud app to display data from gadgetbridge Android App",
"version": "0.6.0",
"author": "Dan Meltzer <[email protected]>",
"contributors": [
"Joas Schilling",
"Dan Meltzer <[email protected]>"
],
"keywords": [
"nextcloud",
"gadgetbridge"
],
"bugs": {
"url": "https://github.com/dmeltzer/nextcloud-gadgetbridge/issues"
},
"repository": {
"url": "https://github.com/dmeltzer/nextcloud-gadgetbridge",
"type": "git"
},
"homepage": "https://github.com/dmeltzer/nextcloud-gadgetbridge",
"license": "AGPL",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --progress --hide-modules --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": {
"@bundle-analyzer/webpack-plugin": "^0.5.1",
"@nextcloud/dialogs": "^1.3.0",
"@nextcloud/router": "^1.0.2",
"@nextcloud/vue": "^2.0.0",
"axios": "^0.19.2",
"chart.js": "^2.9.3",
"luxon": "^1.24.1",
"moment": "^2.25.3",
"nextcloud-l10n": "^0.1.1",
"vue": "^2.6.11",
"vue-chartjs": "^3.5.0",
"vue-datetime": "^1.0.0-beta.13",
"weekstart": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@nextcloud/browserslist-config": "^1.0.0",
"@nextcloud/eslint-config": "^2.0.0",
"@nextcloud/eslint-plugin": "^1.4.0",
"@vue/test-utils": "^1.0.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"eslint": "^6.2.2",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"stylelint": "^13.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.17.2",
"stylelint-webpack-plugin": "^2.0.0",
"vue-loader": "^15.9.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}