2019-07-04 18:02:17 +03:00
|
|
|
{
|
|
|
|
"name": "richdocuments",
|
|
|
|
"description": "Collabora online integration",
|
2021-10-15 13:39:15 +03:00
|
|
|
"version": "5.0.0",
|
2019-07-04 18:02:17 +03:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Julius Härtl",
|
|
|
|
"email": "jus@bitgrid.net",
|
|
|
|
"role": "Developer"
|
|
|
|
}
|
|
|
|
],
|
2019-07-15 12:16:29 +03:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2019-07-04 18:02:17 +03:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2021-03-25 11:33:10 +03:00
|
|
|
"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",
|
2019-07-04 18:02:17 +03:00
|
|
|
"lint": "eslint --ext .js,.vue src",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
2021-03-25 11:53:32 +03:00
|
|
|
"stylelint": "stylelint css/* src",
|
|
|
|
"stylelint:fix": "stylelint css/* src --fix",
|
2019-07-04 18:02:17 +03:00
|
|
|
"test": "NODE_ENV=test jest --passWithNoTests",
|
|
|
|
"test:coverage": "NODE_ENV=test jest --coverage"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-04-01 10:42:27 +03:00
|
|
|
"@nextcloud/auth": "^1.3.0",
|
2021-10-02 06:06:45 +03:00
|
|
|
"@nextcloud/axios": "^1.7.0",
|
2021-04-10 04:09:29 +03:00
|
|
|
"@nextcloud/capabilities": "^1.0.4",
|
2021-11-06 05:03:54 +03:00
|
|
|
"@nextcloud/event-bus": "^2.1.1",
|
2020-09-07 10:01:58 +03:00
|
|
|
"@nextcloud/l10n": "^1.4.1",
|
2020-09-05 04:26:02 +03:00
|
|
|
"@nextcloud/router": "^1.2.0",
|
2021-10-08 10:48:20 +03:00
|
|
|
"@nextcloud/vue": "^4.2.0",
|
2021-06-12 05:19:43 +03:00
|
|
|
"vue": "^2.6.14"
|
2019-07-04 18:02:17 +03:00
|
|
|
},
|
|
|
|
"browserslist": [
|
2021-03-25 11:20:16 +03:00
|
|
|
"extends @nextcloud/browserslist-config"
|
2019-07-04 18:02:17 +03:00
|
|
|
],
|
|
|
|
"engines": {
|
2021-06-16 16:02:21 +03:00
|
|
|
"node": ">=14.0.0",
|
|
|
|
"npm": ">=7.0.0"
|
2019-07-04 18:02:17 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-30 07:53:02 +03:00
|
|
|
"@babel/core": "^7.16.0",
|
2021-10-30 04:01:10 +03:00
|
|
|
"@babel/eslint-parser": "^7.16.0",
|
2020-01-19 05:21:24 +03:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
2021-08-11 12:35:33 +03:00
|
|
|
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
|
2021-10-30 07:53:07 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.16.0",
|
2021-10-30 05:08:34 +03:00
|
|
|
"@babel/preset-env": "^7.16.0",
|
2021-07-24 05:07:54 +03:00
|
|
|
"@nextcloud/babel-config": "^1.0.0",
|
2021-10-02 04:02:22 +03:00
|
|
|
"@nextcloud/browserslist-config": "^2.2.0",
|
2021-05-17 11:05:14 +03:00
|
|
|
"@nextcloud/eslint-config": "^5.1.0",
|
2021-03-25 11:33:10 +03:00
|
|
|
"@nextcloud/eslint-plugin": "^2.0.0",
|
2021-08-02 21:21:04 +03:00
|
|
|
"@nextcloud/webpack-vue-config": "^4.1.0",
|
2021-07-24 04:02:46 +03:00
|
|
|
"@vue/test-utils": "^1.2.2",
|
2021-09-11 07:36:17 +03:00
|
|
|
"acorn": "^8.5.0",
|
2019-07-04 18:02:17 +03:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2020-03-01 05:17:23 +03:00
|
|
|
"babel-eslint": "^10.1.0",
|
2021-10-23 06:36:41 +03:00
|
|
|
"babel-jest": "^27.3.1",
|
2021-10-23 04:03:56 +03:00
|
|
|
"babel-loader": "^8.2.3",
|
2021-06-12 04:07:33 +03:00
|
|
|
"babel-loader-exclude-node-modules-except": "^1.2.1",
|
2021-03-25 11:33:10 +03:00
|
|
|
"css-loader": "^4.3.0",
|
2021-08-02 21:20:16 +03:00
|
|
|
"eslint": "^7.32.0",
|
2021-05-25 13:51:16 +03:00
|
|
|
"eslint-config-standard": "^16.0.3",
|
2021-10-15 13:41:35 +03:00
|
|
|
"eslint-plugin-import": "^2.25.2",
|
2020-03-29 04:21:37 +03:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2021-02-13 05:12:22 +03:00
|
|
|
"eslint-plugin-promise": "^4.3.1",
|
2021-05-25 13:49:48 +03:00
|
|
|
"eslint-plugin-standard": "^5.0.0",
|
2021-10-23 04:03:12 +03:00
|
|
|
"eslint-plugin-vue": "^7.20.0",
|
2021-04-24 04:07:52 +03:00
|
|
|
"eslint-webpack-plugin": "^2.5.4",
|
2020-11-07 05:29:34 +03:00
|
|
|
"file-loader": "^6.2.0",
|
2021-10-23 09:16:10 +03:00
|
|
|
"jest": "^27.3.1",
|
2019-12-01 05:17:35 +03:00
|
|
|
"jest-environment-jsdom-fourteen": "^1.0.1",
|
2019-07-04 18:02:17 +03:00
|
|
|
"jest-serializer-vue": "^2.0.2",
|
2021-07-03 04:02:12 +03:00
|
|
|
"node-polyfill-webpack-plugin": "^1.1.4",
|
2020-10-12 09:17:33 +03:00
|
|
|
"raw-loader": "^4.0.2",
|
2021-10-30 05:07:50 +03:00
|
|
|
"sass": "^1.43.4",
|
2021-01-16 05:06:48 +03:00
|
|
|
"sass-loader": "^10.1.1",
|
2020-10-12 10:01:54 +03:00
|
|
|
"style-loader": "^2.0.0",
|
2021-05-12 09:32:16 +03:00
|
|
|
"stylelint": "^13.13.1",
|
2021-07-10 04:05:03 +03:00
|
|
|
"stylelint-config-recommended-scss": "^4.3.0",
|
2021-09-18 04:03:30 +03:00
|
|
|
"stylelint-scss": "^3.21.0",
|
2021-06-25 12:41:57 +03:00
|
|
|
"stylelint-webpack-plugin": "^2.2.2",
|
2021-05-10 15:23:58 +03:00
|
|
|
"ts-loader": "^8.1.0",
|
2021-10-15 13:43:27 +03:00
|
|
|
"typescript": "^4.4.4",
|
2020-10-10 04:21:00 +03:00
|
|
|
"url-loader": "^4.1.1",
|
2020-09-19 04:20:57 +03:00
|
|
|
"vue-jest": "^3.0.7",
|
2021-08-07 04:01:36 +03:00
|
|
|
"vue-loader": "^15.9.8",
|
2021-03-06 05:03:14 +03:00
|
|
|
"vue-style-loader": "^4.1.3",
|
2021-06-12 05:19:43 +03:00
|
|
|
"vue-template-compiler": "^2.6.14",
|
2021-11-06 05:02:44 +03:00
|
|
|
"webpack": "^5.62.1",
|
2021-10-23 05:11:36 +03:00
|
|
|
"webpack-cli": "^4.9.1",
|
2021-06-25 12:41:56 +03:00
|
|
|
"webpack-merge": "^5.8.0"
|
2019-07-04 18:02:17 +03:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
}
|
2021-09-14 21:46:45 +03:00
|
|
|
}
|