-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
62 lines (62 loc) · 2.09 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
{
"name": "ojsxc",
"version": "5.0.0",
"description": "Real-time chat app for Nextcloud",
"homepage": "http://www.jsxc.org/",
"bugs": "https://github.com/jsxc/jsxc/issues",
"license": "MIT",
"author": "Klaus Herberth <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jsxc/jsxc.nextcloud"
},
"scripts": {
"start": "webpack --progress --mode production",
"dev": "webpack --progress --watch --mode development --config webpack.config.js",
"test": "vendor/bin/phpunit -c phpunit.xml",
"jsxc": "cd node_modules/jsxc/ && webpack --watch --mode development",
"fix-typescript-format": "tslint -c tslint.json \"ts/**/*.ts\" --fix",
"fix-php-format": "vendor/bin/php-cs-fixer fix",
"checking": "run-p --continue-on-error --print-label checking-*",
"checking-typescript-format": "tslint -c tslint.json \"ts/**/*.ts\"",
"checking-php-format": "vendor/bin/php-cs-fixer fix --dry-run"
},
"husky": {
"hooks": {
"pre-commit": "yarn checking-typescript-format && vendor/bin/php-cs-fixer fix --dry-run && vendor/bin/phpunit -c phpunit.xml",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS "
}
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"@octokit/rest": "^17.6.0",
"@types/jquery": "^3.3.6",
"colors": "^1.3.3",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"execa": "^4.0.0",
"git-revision-webpack-plugin": "^3.0.3",
"husky": "^4.2.3",
"inquirer": "^7.1.0",
"libxmljs": "^0.19.5",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "4.13.1",
"npm-run-all": "^4.1.5",
"sass-loader": "^8.0.2",
"simple-git": "^2.4.0",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"typescript": "^3.1.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@jsxc/jsxc": "^4.4.0",
"jquery": "^3.5.1",
"libsignal-protocol": "https://github.com/signalapp/libsignal-protocol-javascript",
"tslint": "^6.1.0",
"typescript-formatter": "^7.2.2"
}
}