forked from nextcloud/spreed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) Β· 2.43 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
{
"name": "talk",
"description": "",
"version": "8.0.0",
"author": "Joas Schilling <coding@schilljs.com>",
"license": "agpl",
"private": true,
"scripts": {
"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",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint -f verbose --config .stylelintrc src",
"stylelint:fix": "stylelint --config .stylelintrc src --fix"
},
"dependencies": {
"@nextcloud/auth": "^0.3.1",
"@nextcloud/axios": "^0.5.0",
"@nextcloud/dialogs": "^0.1.1",
"@nextcloud/initial-state": "^0.2.0",
"@nextcloud/l10n": "^0.2.1",
"@nextcloud/moment": "^0.2.2",
"@nextcloud/router": "^0.1.0",
"@nextcloud/vue": "^1.2.2",
"crypto-js": "^3.1.9-1",
"debounce": "^1.2.0",
"emoji-regex": "^8.0.0",
"escape-html": "^1.0.3",
"nextcloud-vue-collections": "^0.6.0",
"vue": "^2.6.10",
"vue-clipboard2": "^0.3.1",
"vue-contenteditable-directive": "^1.2.0",
"vue-fragment": "^1.5.1",
"vue-router": "^3.1.3",
"vue-virtual-scroll-list": "^1.4.3",
"vuex": "^3.1.2"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@nextcloud/browserslist-config": "^1.0.0",
"@vue/test-utils": "^1.0.0-beta.30",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-nextcloud": "^0.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-nextcloud": "^0.3.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"node-sass": "^4.13.0",
"sass-loader": "^7.3.1",
"stylelint": "^8.4.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.13.0",
"stylelint-webpack-plugin": "^0.10.5",
"vue-loader": "^15.7.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}