nextcloud-notes/package.json

76 lines
2.3 KiB
JSON
Raw Normal View History

2019-05-22 21:40:03 +02:00
{
2020-07-12 22:44:55 +02:00
"name": "notes",
2019-05-22 21:40:03 +02:00
"homepage": "https://github.com/nextcloud/notes",
"license": "agpl",
"private": true,
"scripts": {
2021-03-30 22:00:48 +02:00
"build": "NODE_ENV=production webpack --config webpack.js",
2020-08-02 11:43:37 +02:00
"dev": "NODE_ENV=development webpack --config webpack.js",
2020-07-12 22:44:55 +02:00
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
2019-05-22 21:40:03 +02:00
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint 'src/**/*.vue' 'css/**/*.scss'",
"stylelint:fix": "stylelint 'src/**/*.vue' 'css/**/*.scss' --fix"
},
"dependencies": {
2021-01-05 20:27:34 +01:00
"@nextcloud/axios": "^1.6.0",
"@nextcloud/dialogs": "^3.1.2",
2020-06-11 21:27:04 +02:00
"@nextcloud/event-bus": "^1.2.0",
2020-04-30 21:54:15 +02:00
"@nextcloud/moment": "^1.1.1",
2020-09-01 07:04:36 +02:00
"@nextcloud/router": "^1.2.0",
2021-03-30 22:00:48 +02:00
"@nextcloud/vue": "^3.8.0",
"@nextcloud/vue-dashboard": "^2.0.0",
"@nextcloud/webpack-vue-config": "^4.0.1",
"diff": "^5.0.0",
2021-02-28 18:04:24 +01:00
"easymde": "^2.14.0",
2020-12-28 12:35:23 +01:00
"markdown-it": "^12.0.4",
2020-10-31 21:14:22 +01:00
"stylelint-webpack-plugin": "^2.1.1",
2020-08-22 18:03:15 +02:00
"vue": "^2.6.12",
2021-03-02 22:56:07 +01:00
"vue-fragment": "1.5.1",
"vue-material-design-icons": "^4.11.0",
2021-01-05 20:27:34 +01:00
"vue-observe-visibility": "^1.0.0",
2021-01-31 21:56:36 +01:00
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
2019-05-22 21:40:03 +02:00
},
"browserslist": [
2019-10-22 17:29:47 +02:00
"extends @nextcloud/browserslist-config"
2019-05-22 21:40:03 +02:00
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
2021-03-30 22:00:48 +02:00
"@babel/core": "^7.13.14",
"@babel/eslint-parser": "^7.13.14",
2020-01-31 22:32:41 +01:00
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
2021-03-30 22:00:48 +02:00
"@babel/preset-env": "^7.13.12",
"@nextcloud/browserslist-config": "^2.1.0",
"@nextcloud/eslint-config": "^5.0.0",
2020-11-22 20:15:31 +01:00
"@nextcloud/eslint-plugin": "^2.0.0",
2020-12-06 11:33:17 +01:00
"babel-loader": "^8.2.2",
2021-03-30 22:00:48 +02:00
"core-js": "^3.10.0",
2020-09-30 20:53:16 +02:00
"css-loader": "^4.3.0",
2021-03-30 22:00:48 +02:00
"eslint": "^7.23.0",
2020-11-22 20:15:31 +01:00
"eslint-config-standard": "^16.0.2",
2020-09-30 20:53:16 +02:00
"eslint-plugin-import": "^2.22.1",
2020-03-31 21:45:16 +02:00
"eslint-plugin-node": "^11.1.0",
2021-02-28 18:04:24 +01:00
"eslint-plugin-promise": "^4.3.1",
2020-11-22 20:15:31 +01:00
"eslint-plugin-standard": "^4.1.0",
2021-03-30 22:00:48 +02:00
"eslint-plugin-vue": "^7.8.0",
"eslint-webpack-plugin": "^2.5.3",
2020-10-31 21:14:22 +01:00
"file-loader": "^6.2.0",
2021-03-30 22:00:48 +02:00
"node-polyfill-webpack-plugin": "^1.1.0",
"sass": "^1.32.8",
2021-01-31 21:56:36 +01:00
"sass-loader": "^10.1.1",
2020-11-22 20:15:31 +01:00
"style-loader": "^2.0.0",
2021-03-06 19:45:23 +01:00
"stylelint": "^13.12.0",
2020-01-31 22:32:41 +01:00
"stylelint-config-recommended-scss": "^4.2.0",
2021-02-28 18:04:24 +01:00
"stylelint-scss": "^3.19.0",
2020-10-31 21:14:22 +01:00
"url-loader": "^4.1.1",
2020-12-28 12:35:23 +01:00
"vue-loader": "^15.9.6",
2020-08-22 18:03:15 +02:00
"vue-template-compiler": "^2.6.12",
2021-03-30 22:00:48 +02:00
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
2020-12-28 12:35:23 +01:00
"webpack-merge": "^5.7.3"
2019-05-22 21:40:03 +02:00
}
}