-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.92 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.92 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
55
56
57
58
59
60
{
"name": "app-template",
"version": "0.1.0",
"license": "EUPL-1.2",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js --progress",
"dev": "NODE_ENV=development webpack --config webpack.config.js --progress",
"watch": "NODE_ENV=development webpack --config webpack.config.js --progress --watch",
"lint": "eslint src",
"lint-fix": "npm run lint -- --fix",
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
"stylelint-fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@conduction/nextcloud-vue": "^0.1.0-beta.3",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^3.2.0",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^2.0.1",
"@nextcloud/router": "^2.0.1",
"@nextcloud/vue": "^8.16.0",
"pinia": "^2.1.7",
"vue": "^2.7.14",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^3.6.5"
},
"overrides": {
"libxmljs2": "^0.37.0"
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^4.2.1",
"@eslint/config-helpers": "^0.4.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/webpack-vue-config": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"css-loader": "~7.1.1",
"eslint-plugin-vue": "^9.21.1",
"vue-eslint-parser": "^9.4.3",
"eslint": "^8.56.0",
"eslint-import-resolver-alias": "^1.1.2",
"style-loader": "~4.0.0",
"stylelint": "^15.11.0",
"vue-loader": "^15.11.1 <16.0.0",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1"
}
}