nextcloud-notes/package.json

48 lines
1.4 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-11-12 16:26:28 +01:00
"@nextcloud/axios": "^1.7.0",
"@nextcloud/dialogs": "^3.1.2",
2021-11-12 16:26:28 +01:00
"@nextcloud/event-bus": "^2.1.1",
2020-04-30 21:54:15 +02:00
"@nextcloud/moment": "^1.1.1",
"@nextcloud/router": "^2.0.0",
2021-11-12 16:26:28 +01:00
"@nextcloud/vue": "^4.2.0",
2021-05-31 21:29:26 +02:00
"@nextcloud/vue-dashboard": "^2.0.1",
"diff": "^5.0.0",
"easymde": "^2.15.0",
2021-11-12 16:26:28 +01:00
"markdown-it": "^12.2.0",
2021-07-31 19:51:53 +02:00
"vue": "^2.6.14",
2021-03-02 22:56:07 +01:00
"vue-fragment": "1.5.1",
2021-11-12 16:26:28 +01:00
"vue-material-design-icons": "^4.13.0",
2021-01-05 20:27:34 +01:00
"vue-observe-visibility": "^1.0.0",
2021-11-12 16:26:28 +01:00
"vue-router": "^3.5.3",
2021-01-31 21:56:36 +01:00
"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": "^14.0.0",
"npm": "^7.0.0"
2019-05-22 21:40:03 +02:00
},
"devDependencies": {
2021-07-31 19:51:53 +02:00
"@nextcloud/babel-config": "^1.0.0",
2021-11-12 16:26:28 +01:00
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^6.1.0",
"@nextcloud/stylelint-config": "^1.0.0-beta.0",
2021-11-12 16:26:28 +01:00
"@nextcloud/webpack-vue-config": "^4.1.4"
2019-05-22 21:40:03 +02:00
}
}