-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
75 lines (75 loc) · 2.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "collectives",
"description": "Nextcloud Collectives App",
"author": "CollectiveCloud Team",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/collectives.git"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"serve": "NODE_ENV=development webpack serve --allowed-hosts all --config webpack.js",
"lint": "eslint --ext .js,.vue src cypress --max-warnings=0",
"lint:fix": "eslint --ext .js,.vue src cypress --fix",
"test": "NODE_ENV=test jest --passWithNoTests src/",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/*.vue src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix"
},
"dependencies": {
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/capabilities": "^1.2.0",
"@nextcloud/dialogs": "^6.0.1",
"@nextcloud/event-bus": "^3.3.1",
"@nextcloud/files": "^3.9.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/notify_push": "^1.3.0",
"@nextcloud/paths": "^2.2.1",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.19.0",
"@vueuse/core": "^11.2.0",
"debounce": "^2.2.0",
"escape-html": "^1.0.3",
"focus-trap": "^7.6.1",
"pinia": "^2.2.6",
"sortablejs": "^1.15.3",
"v-click-outside": "^3.2.0",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^3.6.5",
"vue-virtual-scroller": "^1.1.2",
"vuedraggable": "^2.24.3"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"@cypress/browserify-preprocessor": "^3.0.2",
"@cypress/webpack-preprocessor": "^6.0.2",
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/cypress": "^1.0.0-beta.7",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/eslint-plugin": "^2.2.1",
"@nextcloud/stylelint-config": "^3.0.1",
"@nextcloud/webpack-vue-config": "^6.2.0",
"cypress": "^13.6.4",
"cypress-split": "^1.24.5",
"eslint-plugin-cypress": "^3.6.0",
"eslint-webpack-plugin": "^4.2.0",
"jest": "^29.7.0",
"stylelint-webpack-plugin": "^5.0.1"
},
"overrides": {
"sortablejs": "$sortablejs"
}
}