2019-03-18 19:15:31 +03:00
|
|
|
{
|
2019-05-14 10:57:07 +03:00
|
|
|
"name": "text",
|
2019-06-17 14:32:01 +03:00
|
|
|
"description": "Collaborative document editing",
|
2020-05-07 11:01:58 +03:00
|
|
|
"version": "1.1.0",
|
2019-03-18 19:15:31 +03:00
|
|
|
"authors": [
|
|
|
|
{
|
2019-05-14 10:57:07 +03:00
|
|
|
"name": "Julius Härtl",
|
|
|
|
"email": "jus@bitgrid.net",
|
2019-03-18 19:15:31 +03:00
|
|
|
"role": "Developer"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"license": "agpl",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2019-06-16 22:49:59 +03:00
|
|
|
"dev": "NODE_ENV=development webpack --config webpack.dev.js",
|
|
|
|
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
|
|
|
|
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
|
2019-03-18 19:15:31 +03:00
|
|
|
"lint": "eslint --ext .js,.vue src",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
2019-07-01 22:08:01 +03:00
|
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
|
|
|
|
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix",
|
2020-01-02 00:12:11 +03:00
|
|
|
"test": "NODE_ENV=test jest --passWithNoTests src/",
|
|
|
|
"test:coverage": "NODE_ENV=test jest --coverage src/"
|
2019-03-18 19:15:31 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-08-11 13:09:12 +03:00
|
|
|
"@nextcloud/auth": "^1.3.0",
|
2020-08-11 11:41:11 +03:00
|
|
|
"@nextcloud/axios": "^1.3.3",
|
2020-06-08 20:37:54 +03:00
|
|
|
"@nextcloud/event-bus": "^1.2.0",
|
2020-03-29 04:20:30 +03:00
|
|
|
"@nextcloud/initial-state": "^1.1.1",
|
2020-06-05 12:44:22 +03:00
|
|
|
"@nextcloud/l10n": "^1.3.0",
|
2020-06-05 20:06:13 +03:00
|
|
|
"@nextcloud/moment": "^1.1.1",
|
2020-06-08 20:37:54 +03:00
|
|
|
"@nextcloud/router": "^1.1.0",
|
2020-08-11 11:41:11 +03:00
|
|
|
"@nextcloud/vue": "^2.3.0",
|
2020-06-16 09:38:42 +03:00
|
|
|
"entities": "^2.0.3",
|
2019-10-05 11:35:43 +03:00
|
|
|
"escape-html": "^1.0.3",
|
2020-04-20 13:17:32 +03:00
|
|
|
"highlight.js": "^9.16.2",
|
2020-06-15 19:28:13 +03:00
|
|
|
"markdown-it": "^11.0.0",
|
2019-11-29 21:36:43 +03:00
|
|
|
"markdown-it-task-lists": "^2.1.1",
|
2019-11-25 17:34:06 +03:00
|
|
|
"prosemirror-collab": "^1.2.2",
|
2019-11-29 21:36:43 +03:00
|
|
|
"prosemirror-inputrules": "^1.1.2",
|
2020-08-11 11:41:11 +03:00
|
|
|
"prosemirror-markdown": "^1.5.0",
|
|
|
|
"prosemirror-model": "^1.11.0",
|
2020-08-11 13:30:36 +03:00
|
|
|
"prosemirror-schema-list": "^1.1.4",
|
2020-04-06 14:38:50 +03:00
|
|
|
"prosemirror-state": "^1.3.3",
|
2020-08-11 13:30:36 +03:00
|
|
|
"prosemirror-transform": "^1.2.8",
|
2019-11-29 21:36:43 +03:00
|
|
|
"prosemirror-utils": "^0.9.6",
|
2020-08-11 11:41:11 +03:00
|
|
|
"prosemirror-view": "^1.15.2",
|
|
|
|
"proxy-polyfill": "^0.3.2",
|
|
|
|
"tiptap": "^1.29.4",
|
2020-08-22 04:06:58 +03:00
|
|
|
"tiptap-commands": "^1.14.6",
|
2020-08-11 13:09:12 +03:00
|
|
|
"tiptap-extensions": "^1.32.2",
|
2020-08-11 11:41:11 +03:00
|
|
|
"tiptap-utils": "^1.10.4",
|
2019-12-18 14:31:40 +03:00
|
|
|
"vue": "^2.6.11",
|
2019-06-17 14:32:01 +03:00
|
|
|
"vue-click-outside": "^1.0.7"
|
2019-03-18 19:15:31 +03:00
|
|
|
},
|
|
|
|
"browserslist": [
|
2019-12-10 16:21:20 +03:00
|
|
|
"extends @nextcloud/browserslist-config"
|
2019-03-18 19:15:31 +03:00
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-09-05 04:04:18 +03:00
|
|
|
"@babel/core": "^7.11.6",
|
2020-01-14 16:24:39 +03:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
2020-09-07 10:15:24 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.11.5",
|
2020-08-11 11:41:11 +03:00
|
|
|
"@babel/polyfill": "^7.10.4",
|
|
|
|
"@babel/preset-env": "^7.11.0",
|
|
|
|
"@cypress/browserify-preprocessor": "^3.0.1",
|
2019-12-10 16:21:20 +03:00
|
|
|
"@nextcloud/browserslist-config": "^1.0.0",
|
2020-08-11 11:41:11 +03:00
|
|
|
"@nextcloud/eslint-config": "^2.2.0",
|
2020-04-20 14:20:08 +03:00
|
|
|
"@nextcloud/eslint-plugin": "^1.4.0",
|
2020-09-05 04:10:51 +03:00
|
|
|
"@vue/test-utils": "^1.0.5",
|
2020-08-11 11:41:11 +03:00
|
|
|
"acorn": "^7.4.0",
|
2019-06-07 11:19:34 +03:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2020-03-02 09:34:58 +03:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-08-11 11:41:11 +03:00
|
|
|
"babel-jest": "^26.3.0",
|
2020-03-22 05:21:58 +03:00
|
|
|
"babel-loader": "^8.1.0",
|
2019-07-17 13:21:46 +03:00
|
|
|
"clean-webpack-plugin": "^3.0.0",
|
2020-06-14 23:14:00 +03:00
|
|
|
"css-loader": "^3.6.0",
|
2020-08-11 12:47:36 +03:00
|
|
|
"cypress": "^4.12.1",
|
2020-01-02 00:12:11 +03:00
|
|
|
"cypress-image-snapshot": "^3.1.1",
|
2020-04-20 14:20:08 +03:00
|
|
|
"eslint": "^6.8.0",
|
2020-08-11 13:09:12 +03:00
|
|
|
"eslint-config-standard": "^14.1.1",
|
2019-03-18 19:15:31 +03:00
|
|
|
"eslint-friendly-formatter": "^4.0.1",
|
2020-08-11 13:09:12 +03:00
|
|
|
"eslint-loader": "^4.0.2",
|
2020-07-07 20:25:45 +03:00
|
|
|
"eslint-plugin-import": "^2.22.0",
|
2019-10-05 11:28:10 +03:00
|
|
|
"eslint-plugin-nextcloud": "^0.3.0",
|
2020-04-20 13:48:53 +03:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2019-06-26 15:21:08 +03:00
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
2019-08-20 04:15:57 +03:00
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2020-04-20 14:20:08 +03:00
|
|
|
"eslint-plugin-vue": "^6.2.2",
|
2020-09-07 10:11:47 +03:00
|
|
|
"file-loader": "^6.1.0",
|
2019-08-19 04:20:21 +03:00
|
|
|
"jest": "^24.9.0",
|
2019-12-01 15:26:10 +03:00
|
|
|
"jest-environment-jsdom-fourteen": "^1.0.1",
|
2019-03-18 19:15:31 +03:00
|
|
|
"jest-serializer-vue": "^2.0.2",
|
2020-06-08 20:37:54 +03:00
|
|
|
"node-sass": "^4.14.1",
|
2019-12-01 05:18:40 +03:00
|
|
|
"raw-loader": "^4.0.0",
|
2020-08-29 04:07:22 +03:00
|
|
|
"sass-loader": "^10.0.1",
|
2020-06-22 09:33:27 +03:00
|
|
|
"stylelint": "^13.6.1",
|
2020-02-02 05:20:03 +03:00
|
|
|
"stylelint-config-recommended-scss": "^4.2.0",
|
2020-06-21 04:14:53 +03:00
|
|
|
"stylelint-scss": "^3.18.0",
|
2020-06-22 08:52:20 +03:00
|
|
|
"stylelint-webpack-plugin": "^2.1.0",
|
2020-03-22 05:17:31 +03:00
|
|
|
"url-loader": "^4.0.0",
|
2020-08-11 11:41:11 +03:00
|
|
|
"vue-jest": "^3.0.6",
|
2020-07-08 09:22:49 +03:00
|
|
|
"vue-loader": "^15.9.3",
|
2019-03-18 19:15:31 +03:00
|
|
|
"vue-style-loader": "^4.1.1",
|
2020-01-14 16:24:39 +03:00
|
|
|
"vue-template-compiler": "^2.6.11",
|
2020-08-11 11:41:11 +03:00
|
|
|
"webpack": "^4.44.1",
|
2020-06-22 09:25:33 +03:00
|
|
|
"webpack-cli": "^3.3.12",
|
2020-08-22 04:08:23 +03:00
|
|
|
"webpack-merge": "^5.1.2"
|
2019-03-18 19:15:31 +03:00
|
|
|
},
|
|
|
|
"jest": {
|
2019-07-01 21:41:52 +03:00
|
|
|
"verbose": true,
|
2019-07-02 19:42:04 +03:00
|
|
|
"testEnvironment": "jest-environment-jsdom-fourteen",
|
2019-03-18 19:15:31 +03:00
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"vue"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
|
|
},
|
2019-06-12 18:56:19 +03:00
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"<rootDir>/src/tests/fixtures/",
|
|
|
|
"<rootDir>/build"
|
2019-06-12 12:26:01 +03:00
|
|
|
],
|
2019-03-18 19:15:31 +03:00
|
|
|
"transform": {
|
|
|
|
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
|
|
|
|
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
|
|
|
|
},
|
|
|
|
"snapshotSerializers": [
|
|
|
|
"<rootDir>/node_modules/jest-serializer-vue"
|
2019-06-07 11:19:34 +03:00
|
|
|
],
|
|
|
|
"globalSetup": "<rootDir>/src/tests/setup.js"
|
2019-03-18 19:15:31 +03:00
|
|
|
}
|
|
|
|
}
|