This repository was archived by the owner on Sep 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 KB
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
{
"name": "@hwdtech/react-signalr",
"version": "1.0.0-alpha.1",
"description": "A set of helper components to work with SignalR hub connections & streams",
"main": "./dist/index.js",
"directories": {
"lib": "./src",
"examples": "./examples"
},
"repository": "github:hwdtech/react-signalr",
"homepage": "https://github.com/hwdtech/react-signalr/blob/master/README.md",
"bugs": {
"url": "https://github.com/hwdtech/react-signalr/issues"
},
"author": "Max Malov <mmalov@hwdtech.ru>",
"license": "MIT",
"private": false,
"scripts": {
"start": "npm run storybook",
"watch": "jest --watch --no-cache",
"lint": "tslint --project tsconfig.json --fix",
"test": "jest",
"fmt": "prettier --write 'src/**/*' '*.md' 'examples/**/*'",
"build": "rimraf dist && NODE_ENV=production tsc --project tsconfig.prod.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"peerDependencies": {
"@aspnet/signalr": "^1.0.4",
"react": "^16.8.5",
"react-dom": "^16.8.5"
},
"devDependencies": {
"@aspnet/signalr": "^1.0.4",
"@babel/core": "^7.3.4",
"@storybook/addon-actions": "^4.1.13",
"@storybook/addon-links": "^4.1.13",
"@storybook/addons": "^4.1.13",
"@storybook/react": "^4.1.13",
"@storybook/storybook-deployer": "^2.8.1",
"@types/jest": "^24.0.9",
"@types/react": "^16.8.7",
"@types/storybook__addon-actions": "^3.4.2",
"@types/storybook__react": "^4.0.1",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"husky": "^1.3.1",
"jest": "^24.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-testing-library": "^6.0.0",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"tslib": "^1.9.3",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6"
},
"dependencies": {},
"files": [
"dist/*"
],
"keywords": [
"react",
"react-context",
"signalr"
]
}