cookbook/package.json

72 строки
2.3 KiB
JSON

{
"name": "nextcloud-cookbook",
"version": "0.9.11",
"description": "",
"main": "src/main.js",
"scripts": {
"build": "npx webpack --node-env production --progress --config webpack.config.js",
"build-dev": "npx webpack --node-env development --progress --config webpack.config.js",
"dev": "npx webpack --node-env development --progress --watch --config webpack.devel.js",
"serve": "npx webpack serve --node-env development --progress --config webpack.config.js --env dev_server",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "npx prettier --check src",
"prettier-fix": "npx prettier --write src",
"stylelint": "npx stylelint src",
"stylelint-fix": "npx stylelint --fix src",
"eslint": "npx eslint --cache --cache-strategy content src/**/*.{vue,js}",
"eslint-fix": "npx eslint --cache --cache-strategy content --fix src/**/*.{vue,js}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrzapp/nextcloud-cookbook.git"
},
"author": "",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mrzapp/nextcloud-cookbook/issues"
},
"homepage": "https://github.com/mrzapp/nextcloud-cookbook#readme",
"dependencies": {
"@nextcloud/auth": "^1.3.0",
"@nextcloud/axios": "^1.6.0",
"@nextcloud/moment": "^1.1.1",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^5.1.0",
"linkifyjs": "^3.0.1",
"lozad": "^1.16.0",
"node-sass": "^7.0.0",
"sass-loader": "^12.0.0",
"v-markdown-editor": "^1.2.6",
"vue": "^2.6.11",
"vue-i18n": "^8.17.1",
"vue-router": "^3.1.6",
"vue-showdown": "^2.4.1",
"vuex": "^3.1.3"
},
"devDependencies": {
"@nextcloud/stylelint-config": "^2.1.2",
"@nextcloud/webpack-vue-config": "^5.0.0",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^8.0.3",
"prettier": "^2.2.1",
"stylelint": "^14.5.3",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-scss": "^4.1.0",
"svg-inline-loader": "^0.8.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.37.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3"
},
"engines": {
"node": "^14.0.0",
"npm": "^7.0.0"
}
}