forked from nextcloud/spreed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.68 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "talk",
"version": "18.0.0-dev.0",
"private": true,
"description": "",
"author": "Joas Schilling <[email protected]>",
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"serve": "webpack serve --node-env development --progress --allowed-hosts all",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix",
"analyze": "npm run analyze:stats && npm run analyze:serve",
"analyze:stats": "npm run build -- --json js/stats.json",
"analyze:serve": "webpack-bundle-analyzer js/stats.json js/",
"analyze:report": "webpack-bundle-analyzer js/stats.json js/ --mode static --report js/stats/report.html"
},
"dependencies": {
"@linusborg/vue-simple-portal": "^0.1.5",
"@nextcloud/auth": "^2.1.0",
"@nextcloud/axios": "^2.4.0",
"@nextcloud/browser-storage": "^0.2.0",
"@nextcloud/capabilities": "^1.1.0",
"@nextcloud/dialogs": "^4.1.0",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/files": "^3.0.0-beta.21",
"@nextcloud/initial-state": "^2.1.0",
"@nextcloud/l10n": "^2.2.0",
"@nextcloud/moment": "^1.2.1",
"@nextcloud/paths": "^2.1.0",
"@nextcloud/router": "^2.1.2",
"@nextcloud/vue": "^7.12.4",
"attachmediastream": "^2.1.0",
"crypto-js": "^4.1.1",
"debounce": "^1.2.1",
"emoji-mart-vue-fast": "^15.0.0",
"emoji-regex": "^10.2.1",
"escape-html": "^1.0.3",
"extendable-media-recorder": "^9.0.0",
"extendable-media-recorder-wav-encoder": "^7.0.96",
"hark": "^1.2.3",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"lodash": "^4.17.21",
"mockconsole": "0.0.1",
"nextcloud-vue-collections": "^0.11.1",
"pinia": "^2.1.6",
"ua-parser-js": "^1.0.35",
"util": "^0.12.5",
"vue": "^2.7.14",
"vue-cropperjs": "^4.2.0",
"vue-frag": "^1.4.3",
"vue-material-design-icons": "^5.2.0",
"vue-observe-visibility": "^1.0.0",
"vue-outside-events": "^1.1.3",
"vue-prevent-unload": "^0.2.3",
"vue-router": "^3.6.5",
"vue-shortkey": "^3.1.7",
"vue-virtual-scroller": "^1.1.2",
"vue2-leaflet": "^2.7.1",
"vuex": "^3.6.2",
"webdav": "^5.3.0",
"webrtc-adapter": "^8.2.3",
"webrtcsupport": "^2.2.0",
"wildemitter": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^3.0.0",
"@nextcloud/eslint-config": "^8.2.1",
"@nextcloud/stylelint-config": "^2.3.1",
"@nextcloud/webpack-vue-config": "^6.0.0",
"@types/jest": "^29.5.4",
"@vue/test-utils": "^1.3.6",
"@vue/vue2-jest": "^29.2.5",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"esbuild-loader": "^4.0.2",
"flush-promises": "^1.0.2",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-localstorage-mock": "^2.4.26",
"jest-mock-console": "^2.0.0",
"jest-transform-stub": "^2.0.0",
"regenerator-runtime": "^0.14.0",
"vue-template-compiler": "^2.7.14",
"wasm-check": "^2.1.2",
"webpack-bundle-analyzer": "^4.9.0",
"worker-loader": "^3.0.8"
},
"browser": {
"fs": false
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^9.0.0"
},
"license": "agpl"
}