-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 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
{
"name": "issuetemplate",
"version": "0.4.0",
"description": "Issue reporting app for Nextcloud",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"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 .js,.vue src",
"lint:fix": "eslint --ext .js,.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juliushaertl/issuetemplate.git"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"author": "Julius Härtl",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/juliushaertl/issuetemplate/issues"
},
"homepage": "https://github.com/juliushaertl/issuetemplate#readme",
"dependencies": {
"@nextcloud/axios": "^2.5.1",
"@nextcloud/dialogs": "^4.2.7",
"@nextcloud/router": "^2.2.0",
"@nextcloud/vue": "^7.12.6",
"vue": "^2.7.16",
"vue-clipboard2": "0.3.3",
"vue-form-generator": "^2.3.4",
"vue-form-wizard": "^0.8.4"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/webpack-vue-config": "^6.3.0"
}
}