-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·48 lines (48 loc) · 1.58 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
{
"name": "kiwiirc-plugin-conference",
"version": "1.0.0",
"main": "./src/plugin.js",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"dev": "webpack-dev-server",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint --ext .js,.vue ./",
"lint:stylelint": "stylelint \"src/**/*.{vue,htm,html,css,sss,less,scss}\""
},
"dependencies": {
"emoji-mart-vue-fast": "^15.0.0",
"grapheme-splitter": "^1.0.4",
"platform": "^1.3.6",
"vue": "^2.7.14"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@vue/eslint-config-airbnb": "^6.0.0",
"babel-loader": "9.1.2",
"css-loader": "^6.8.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^8.7.1",
"eslint-plugin-vuejs-accessibility": "^1.2.0",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.5.0",
"style-loader": "^3.3.3",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"terser-webpack-plugin": "^5.3.9",
"vue-loader": "^15.10.1",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}