kopia lustrzana https://github.com/nextcloud/social
113 wiersze
3.3 KiB
JSON
113 wiersze
3.3 KiB
JSON
{
|
|
"name": "social",
|
|
"description": "🎉 Nextcloud becomes part of the federated social networks!",
|
|
"version": "0.8.0",
|
|
"authors": [
|
|
{
|
|
"name": "John Molakvoæ",
|
|
"email": "skjnldsv@protonmail.com",
|
|
"role": "Developer"
|
|
},
|
|
{
|
|
"name": "Jan-Christoph Borchardt",
|
|
"homepage": "https://jancborchardt.net",
|
|
"role": "Designer"
|
|
}
|
|
],
|
|
"license": "agpl",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development webpack --config webpack.common.js",
|
|
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.common.js",
|
|
"build": "NODE_ENV=production webpack --progress --config webpack.common.js",
|
|
"serve": "NODE_ENV=development webpack serve --progress --config webpack.common.js",
|
|
"lint": "eslint --ext .js,.vue src",
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
|
"stylelint": "stylelint src",
|
|
"stylelint:fix": "stylelint src --fix",
|
|
"test": "jest",
|
|
"test:coverage": "jest --coverage",
|
|
"cypress": "npm run cypress:component && npm run cypress:e2e",
|
|
"cypress:component": "cypress run --component",
|
|
"cypress:e2e": "cypress run --e2e",
|
|
"cypress:gui": "cypress open",
|
|
"precypress:update-snapshots": "TESTING=true npm run dev"
|
|
},
|
|
"dependencies": {
|
|
"@nextcloud/auth": "^2.0.0",
|
|
"@nextcloud/axios": "^2.3.0",
|
|
"@nextcloud/dialogs": "^4.0.1",
|
|
"@nextcloud/initial-state": "^2.0.0",
|
|
"@nextcloud/l10n": "^2.1.0",
|
|
"@nextcloud/logger": "^2.5.0",
|
|
"@nextcloud/moment": "^1.2.1",
|
|
"@nextcloud/router": "^2.0.1",
|
|
"@nextcloud/vue": "^7.12.0",
|
|
"@nextcloud/vue-richtext": "^2.0.4",
|
|
"blurhash": "^2.0.5",
|
|
"debounce": "^1.2.1",
|
|
"he": "^1.2.0",
|
|
"linkify-plugin-mention": "^4.1.0",
|
|
"linkify-string": "^4.1.0",
|
|
"linkifyjs": "^4.1.0",
|
|
"sass": "^1.59.2",
|
|
"tributejs": "^5.1.3",
|
|
"twemoji": "12.0.1",
|
|
"uuid": "^8.3.2",
|
|
"vue": "^2.7.10",
|
|
"vue-click-outside": "^1.0.7",
|
|
"vue-infinite-loading": "^2.4.4",
|
|
"vue-masonry-css": "^1.0.3",
|
|
"vue-material-design-icons": "^5.2.0",
|
|
"vue-router": "^3.6.5",
|
|
"vue-tribute": "^1.0.7",
|
|
"vue-twemoji": "^1.0.1",
|
|
"vuetrend": "^0.3.4",
|
|
"vuex": "^3.6.2",
|
|
"vuex-router-sync": "^5.0.0"
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
],
|
|
"browser": {
|
|
"fs": false
|
|
},
|
|
"engines": {
|
|
"node": "^20.0.0",
|
|
"npm": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/browserify-preprocessor": "^3.0.2",
|
|
"@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.5.1",
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
"@nextcloud/cypress": "^1.0.0-beta.2",
|
|
"cypress-visual-regression": "^2.1.1",
|
|
"cypress-wait-until": "^1.7.2",
|
|
"dockerode": "^3.3.5",
|
|
"jest": "^29.5.0",
|
|
"jest-serializer-vue": "^3.1.0",
|
|
"vue-template-compiler": "^2.7.14",
|
|
"wait-on": "^7.0.1"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"vue"
|
|
],
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
},
|
|
"transform": {
|
|
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
|
|
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
|
|
},
|
|
"snapshotSerializers": [
|
|
"<rootDir>/node_modules/jest-serializer-vue"
|
|
]
|
|
}
|
|
}
|