forked from kiwiirc/kiwiirc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.3 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
{
"name": "kiwiirc",
"version": "1.6.0",
"description": "Web based IRC client",
"author": "Darren <darren@darrenwhitlen.com>",
"scripts": {
"build": "npm-run-all translate && vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "npm-run-all lint:*",
"lint:eslint": "vue-cli-service lint --no-fix",
"lint:stylelint": "stylelint \"src/**/*.{vue,htm,html,css,sss,less,scss}\"",
"dev": "npm-run-all translate && vue-cli-service serve",
"test": "vue-cli-service test:unit",
"translate": "node build/webpack/locales.js",
"gendocs": "rm -rf srcdocs/ && jsdoc -c jsdoc.json"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.16.3",
"@panter/vue-i18next": "^0.15.2",
"compare-versions": "^3.6.0",
"css-vars-ponyfill": "^2.4.7",
"event-emitter": "^0.3.5",
"font-awesome": "^4.7.0",
"font-awesome-webpack-4": "^1.0.0",
"htmlparser2": "^6.1.0",
"i18next": "^20.6.1",
"i18next-conv": "^10.2.0",
"i18next-xhr-backend": "^3.2.2",
"intersection-observer": "^0.12.0",
"ip-regex": "^4.3.0",
"irc-framework": "^4.12.1",
"json5": "^2.2.0",
"murmurhash3js": "^3.0.1",
"strftime": "^0.10.0",
"tinycon": "^0.6.8",
"vue": "^2.6.14",
"vue-virtual-scroller": "^1.0.10",
"whatwg-fetch": "^3.6.2",
"xhr": "^2.6.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-unit-jest": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@vue/eslint-config-airbnb": "^5.3.0",
"@vue/test-utils": "1.3.0",
"babel-eslint": "^10.1.0",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-rulesdir": "^0.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2",
"html-loader": "^1.3.2",
"jsdoc": "^3.6.7",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss-import": "^12.0.1",
"postcss-url": "^9.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-webpack-plugin": "2.3.1",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0"
}
}