-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
54 lines (54 loc) · 1.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
{
"name": "ownpad",
"description": "Ownpad application for Nextcloud",
"version": "0.12.0",
"author": "Olivier Tétard <olivier.tetard@miskin.fr>",
"contributors": [],
"bugs": {
"url": "https://github.com/otetard/ownpad/issues"
},
"repository": {
"url": "https://github.com/otetard/ownpad",
"type": "git"
},
"homepage": "https://github.com/otetard/ownpad",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src css",
"stylelint:fix": "stylelint src css --fix"
},
"dependencies": {
"@nextcloud/auth": "^2.1.0",
"@nextcloud/axios": "^2.4.0",
"@nextcloud/dialogs": "^4.2.3",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/files": "^3.1.0",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/logger": "^2.7.0",
"@nextcloud/router": "^2.1.2",
"@nextcloud/vue": "^8.11.2",
"jquery": "^3.7.0",
"lodash": "^4.17.21",
"vue": "^2.7.16"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^3.0.0",
"@nextcloud/eslint-config": "^8.2.1",
"@nextcloud/stylelint-config": "^2.3.1",
"@nextcloud/webpack-vue-config": "^6.0.0"
}
}