forked from kiwiirc/kiwiirc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.45 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
{
"name": "kiwiirc",
"version": "1.1.0",
"description": "Web based IRC client",
"author": "Darren <darren@darrenwhitlen.com>",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"build": "node build/build.js",
"translate": "node build/locales.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"test": "npm run unit",
"lint:eslint": "eslint --ext .js,.vue src test/unit/specs",
"lint:stylelint": "stylelint \"src/**/*.{vue,htm,html,css,sss,less,scss}\"",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:stylelint -- --fix"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"dependencies": {
"@panter/vue-i18next": "^0.5.1",
"autoprefixer": "^6.4.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "7.1.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.8",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.5.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-vue": "^4.1.0",
"event-emitter": "^0.3.5",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.9.0",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "^0.0.5-beta.2",
"friendly-errors-webpack-plugin": "^1.6.1",
"function-bind": "^1.0.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.8.1",
"i18next": "^8.4.0",
"i18next-conv": "^3.0.3",
"i18next-xhr-backend": "^1.4.1",
"irc-framework": "^2.11.0",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^4.0.5",
"node-notifier": "^5.2.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^0.3.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.10",
"postcss-url": "^7.3.0",
"shelljs": "^0.7.4",
"sockjs-client": "^1.1.1",
"strftime": "^0.9.2",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0",
"stylelint-webpack-plugin": "^0.10.1",
"tinycon": "^0.6.8",
"uppy": "^0.18.0",
"url-loader": "^0.5.7",
"vue": "^2.5.13",
"vue-loader": "^13.7.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.11.0",
"webpack-merge": "^0.14.1",
"xhr": "^2.3.2"
},
"devDependencies": {
"chai": "^3.5.0",
"connect-history-api-fallback": "^1.1.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"http-proxy-middleware": "^0.17.2",
"inject-loader": "^2.0.1",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon-chai": "^1.3.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.9",
"lolex": "^1.4.0",
"mocha": "^3.1.0",
"phantomjs-prebuilt": "^2.1.3",
"sinon": "^4.1.4",
"sinon-chai": "^2.8.0",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2"
}
}