90 строки
2.8 KiB
JSON
90 строки
2.8 KiB
JSON
{
|
|
"name": "richdocuments",
|
|
"description": "Collabora online integration",
|
|
"version": "9.0.0-dev.0",
|
|
"authors": [
|
|
{
|
|
"name": "Julius Härtl",
|
|
"email": "jus@bitgrid.net",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"license": "AGPL-3.0-or-later",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "NODE_ENV=production webpack --progress --config webpack.js",
|
|
"dev": "NODE_ENV=development webpack --progress --config webpack.js",
|
|
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
|
|
"lint": "eslint --ext .js,.vue,.ts,.tsx src",
|
|
"lint:fix": "eslint --ext .js,.vue,.ts,.tsx src --fix",
|
|
"lint:cypress": "eslint --ext .js cypress",
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css css/*.scss",
|
|
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css css/*.scss --fix",
|
|
"test": "NODE_ENV=test jest --passWithNoTests",
|
|
"test:coverage": "NODE_ENV=test jest --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@nextcloud/auth": "^2.4.0",
|
|
"@nextcloud/axios": "^2.5.1",
|
|
"@nextcloud/capabilities": "^1.2.0",
|
|
"@nextcloud/dialogs": "^6.1.1",
|
|
"@nextcloud/event-bus": "^3.3.1",
|
|
"@nextcloud/files": "^3.10.1",
|
|
"@nextcloud/initial-state": "^2.2.0",
|
|
"@nextcloud/l10n": "^3.1.0",
|
|
"@nextcloud/moment": "^1.3.2",
|
|
"@nextcloud/paths": "^2.2.1",
|
|
"@nextcloud/router": "^3.0.1",
|
|
"@nextcloud/vue": "^8.22.0",
|
|
"@nextcloud/sharing": "^0.2.4",
|
|
"vue": "^2.7.16",
|
|
"vue-material-design-icons": "^5.3.1"
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
],
|
|
"engines": {
|
|
"node": "^20.0.0",
|
|
"npm": "^10.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/browserify-preprocessor": "^3.0.2",
|
|
"@cypress/webpack-preprocessor": "^6.0.2",
|
|
"@nextcloud/babel-config": "^1.2.0",
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
|
"@nextcloud/cypress": "^1.0.0-beta.12",
|
|
"@nextcloud/eslint-config": "^8.4.1",
|
|
"@nextcloud/stylelint-config": "^3.0.1",
|
|
"@nextcloud/webpack-vue-config": "^6.1.1",
|
|
"babel-loader-exclude-node-modules-except": "^1.2.1",
|
|
"cypress": "^13.17.0",
|
|
"cypress-split": "^1.24.7",
|
|
"eslint-plugin-cypress": "^3.5.0",
|
|
"ts-loader": "^9.5.2",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"jest": {
|
|
"verbose": true,
|
|
"testEnvironment": "jest-environment-jsdom-fourteen",
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"vue"
|
|
],
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
},
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/src/tests/fixtures/",
|
|
"<rootDir>/build"
|
|
],
|
|
"transform": {
|
|
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
|
|
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
|
|
},
|
|
"snapshotSerializers": [
|
|
"<rootDir>/node_modules/jest-serializer-vue"
|
|
],
|
|
"globalSetup": "<rootDir>/src/tests/setup.js"
|
|
}
|
|
}
|