-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.5 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
{
"name": "use-stomp",
"version": "1.1.1",
"description": "react provider, class decorator, and a hook for websockets using the stomp protocol",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "cjs/index.d.ts",
"files": [
"cjs",
"esm",
"src",
"webSocketWorkerInstance.js",
"webSocketWorkerInstance.js.map",
"README.md"
],
"scripts": {
"build": "NODE_ENV=production ./build.sh -build -styleguidist",
"build:dev": "NODE_ENV=development ./build.sh -build -pack",
"build:worker": "webpack --config ./webpack.conf.js --mode=development",
"format": "prettier --check \"{,!(node_modules|cjs|esm|gradle)/**/}*.{ts,tsx}\" --loglevel warn -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mentierd/use-stomp.git"
},
"keywords": [
"react",
"decorators",
"hooks",
"websockets",
"sockjs",
"stomp",
"stompjs"
],
"author": "dayne mentier",
"license": "ISC",
"bugs": {
"url": "https://github.com/mentierd/use-stomp/issues"
},
"homepage": "https://github.com/mentierd/use-stomp#readme",
"dependencies": {
"core-js": "~3.8.0",
"notistack": "~1.0.2",
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"sockjs-client": "^1.5.0",
"uuid": "~8.3.1",
"websocket": "^1.0.32"
},
"devDependencies": {
"@babel/cli": "~7.12.1",
"@babel/core": "~7.12.3",
"@babel/plugin-proposal-class-properties": "~7.12.1",
"@babel/plugin-proposal-decorators": "~7.12.1",
"@babel/plugin-transform-react-constant-elements": "^7.12.1",
"@babel/plugin-transform-runtime": "~7.12.1",
"@babel/plugin-transform-typescript": "~7.12.1",
"@babel/preset-env": "~7.12.1",
"@babel/preset-react": "~7.12.1",
"@babel/preset-typescript": "~7.12.1",
"@types/react": "16.14.2",
"@types/react-dom": "16.9.10",
"@types/sharedworker": "0.0.29",
"@types/sockjs-client": "^1.5.0",
"@types/stompjs": "^2.3.4",
"@types/uuid": "^8.3.0",
"@types/websocket": "1.0.1",
"babel-loader": "8.1.0",
"babel-plugin-macros": "3.0.0",
"babel-plugin-set-display-name": "1.1.2",
"babel-plugin-styled-components": "~1.11.1",
"husky": "~4.2.5",
"import-sort-style-module": "6.0.0",
"notistack": "^1.0.2",
"prettier": "^2.1.2",
"prettier-plugin-import-sort": "0.0.6",
"raw.macro": "0.4.2",
"typescript": "^4.1.2",
"webpack": "^4.42.1",
"webpack-cli": "^4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run build:dev && git add ."
}
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "strict",
"insertPragma": false,
"jsxBracketSameLine": true,
"jsxSingleQuote": true,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": false
},
"sideEffects": false
}