Nextcloud-App/package.json

53 lines
1.7 KiB
JSON

{
"name": "upschooling",
"description": "A simple Nextcloud app tutorial for building a notes app",
"version": "27.0.0",
"author": "BVSC e.V. <no@example.com>",
"contributors": [
"Finn",
"Ben",
"Caluera"
],
"bugs": {
"url": "https://gitea.rs485.network/UPschooling/Nextcloud-App/issues"
},
"repository": {
"url": "https://gitea.rs485.network/UPschooling/Nextcloud-App.git",
"type": "git"
},
"homepage": "https://gitea.rs485.network/UPschooling/Nextcloud-App",
"license": "agpl",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.config.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.config.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.config.js",
"serve": "NODE_ENV=development webpack serve --progress --config webpack.config.js",
"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"
},
"dependencies": {
"@nextcloud/axios": "^1.10.0",
"@nextcloud/dialogs": "^3.1.4",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^5.4.0",
"vue": "^2.7.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^16.0.0 || ^18.0.0",
"npm": "^7.0.0 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^8.0.0",
"@nextcloud/stylelint-config": "^2.1.2",
"@nextcloud/webpack-vue-config": "^5.2.1"
}
}