51 строка
1.6 KiB
JSON
51 строка
1.6 KiB
JSON
{
|
|
"name": "notestutorial",
|
|
"description": "A simple Nextcloud app tutorial for building a notes app",
|
|
"version": "20.0.0",
|
|
"author": "Julius Härtl <jus@bitgrid.net",
|
|
"contributors": [
|
|
"John Molakvoæ <skjnldsv@protonmail.com>"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/nextcloud/app-tutorial/issues"
|
|
},
|
|
"repository": {
|
|
"url": "https://github.com/nextcloud/app-tutorial",
|
|
"type": "git"
|
|
},
|
|
"homepage": "https://github.com/nextcloud/app-tutorial",
|
|
"license": "agpl",
|
|
"private": true,
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@nextcloud/axios": "^2.3.0",
|
|
"@nextcloud/dialogs": "^3.2.0",
|
|
"@nextcloud/router": "^2.1.1",
|
|
"@nextcloud/vue": "^7.4.0",
|
|
"vue": "^2.7.14"
|
|
},
|
|
"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": "^2.3.0",
|
|
"@nextcloud/eslint-config": "^8.2.1",
|
|
"@nextcloud/stylelint-config": "^2.3.0",
|
|
"@nextcloud/webpack-vue-config": "^5.4.0"
|
|
}
|
|
}
|