forked from jsxc/jsxc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.83 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
110
111
112
113
{
"name": "@jsxc/jsxc",
"version": "4.0.0-rc.1",
"description": "Real-time XMPP chat application with video calls, file transfer and encrypted communication",
"keywords": ["XMPP", "client", "browser", "video", "file transfer", "real-time"],
"homepage": "https://www.jsxc.org/",
"bugs": "https://github.com/jsxc/jsxc/issues",
"license": "MIT",
"author": "Klaus Herberth <[email protected]>",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/jsxc/jsxc"
},
"scripts": {
"start": "webpack --config webpack.config.js --mode production",
"watch": "webpack --config webpack.config.js --mode development --watch",
"dev": "webpack-dev-server --mode development",
"test": "karma start --single-run",
"fix-typescript-format": "tslint -c tslint.json \"src/**/*.ts\" --fix",
"fix-style-format": "stylelint \"scss/**/*.scss\" --fix",
"checking-style-format": "stylelint \"scss/**/*.scss\"",
"checking-typescript-format": "tslint -c tslint.json \"src/**/*.ts\"",
"checking-typescript": "tsc --noEmit"
},
"husky": {
"hooks": {
"prepare-commit-msg": "node scripts/prepare-commit-msg.js HUSKY_GIT_PARAMS",
"pre-commit": "node scripts/search-blacklist.js && yarn checking-style-format && yarn checking-typescript-format && yarn checking-typescript",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS || node scripts/print-commitlint-info.js"
}
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"@types/chai": "^4.1.7",
"@types/emojione": "^2.2.5",
"@types/handlebars": "^4.1.0",
"@types/jquery": "^3.3.30",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"@types/sinon": "^7.0.13",
"@types/strophe.js": "^1.2.0",
"archiver": "^3.0.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"git-branch": "^2.0.1",
"git-revision-webpack-plugin": "^3.0.3",
"husky": "^3.0.0",
"istanbul": "^0.4.5",
"js-beautify": "^1.10.1",
"karma": "^4.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-spec-reporter": "^0.0.32",
"karma-typescript": "^4.1.1",
"karma-webpack": "^4.0.2",
"mocha": "^6.1.4",
"sass-loader": "^7.1.0",
"sinon": "^7.3.2",
"stylelint": "^10.1.0",
"stylelint-config-sass-guidelines": "^6.0.0",
"terser-webpack-plugin": "^1.3.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3",
"typescript-formatter": "^7.2.2",
"webpack": "^4.36.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"bootstrap-sass": "^3.4.1",
"bytebuffer": "^5.0.1",
"consistent-color-generation": "^0.3.0",
"emojione": "2.2.x",
"es6-promise": "^4.2.8",
"file-loader": "^4.0.0",
"getscreenmedia": "^5.1.2",
"handlebars": "^4.1.2",
"handlebars-loader": "^1.7.1",
"handlebars-runtime": "^1.0.12",
"i18next": "^17.0.6",
"i18next-browser-languagedetector": "^3.0.1",
"interactjs": "^1.5.3",
"jingle": "^3.0.3",
"jingle-session": "^2.0.3",
"jquery": "^3.4.1",
"jxt": "^4.0.2",
"jxt-xmpp": "^3.3.0",
"jxt-xmpp-types": "^3.0.0",
"mini-css-extract-plugin": "^0.8.0",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"otr": "github:sualko/otr#es6-modules",
"precompile-handlebars": "^1.0.5",
"screenfull": "^4.2.1",
"sha1": "^1.1.1",
"strophe.js": "1.3.3",
"tslint": "^5.18.0",
"webrtc-adapter": "^7.2.8"
}
}