-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
executable file
·81 lines (81 loc) · 2.29 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
{
"name": "react-signalr",
"version": "0.2.24",
"description": "React-signalr is a tools for using signalr web socket in react/react-native apps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc",
"prepare": "yarn build",
"build": "rm -rf ./lib && yarn compile",
"lint": "eslint --ext '.ts' ./src",
"test": "yarn build && jest",
"release": " yarn build && standard-version && npm publish && git push --follow-tags origin main",
"prettierAll": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/hosseinmd/react-signalr.git"
},
"keywords": [
"react-signalr",
"react",
"signalr",
"web socket",
"socket",
"microsoft"
],
"author": "Hossein mohammadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/hosseinmd/react-signalr/issues"
},
"homepage": "https://github.com/hosseinmd/react-signalr#readme",
"dependencies": {
"hermes-channel": "^2.1.2",
"js-cookie": "^2.2.1",
"uuid": "^8.3.2"
},
"peerDependencies": {
"react": ">=16.13",
"@microsoft/signalr": "^8.0.0",
"socket.io-client": "^4.2.0"
},
"devDependencies": {
"socket.io-client": "^4.2.0",
"socket.io": "^4.2.0",
"@microsoft/signalr": "^8.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.15",
"@types/js-cookie": "^2.2.6",
"@types/react-dom": "^18.0.6",
"@types/react": "^18.0.15",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"babel-jest": "^26.6.3",
"commitlint": "^11.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint": "^8.48.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier-plugin-jsdoc": "^1.0.1",
"prettier": "^3.0.3",
"react-art": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"react": "^18.2.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.4",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn compile --noEmit"
}
}
}