forked from matiere-noire/redux-websocket-autoreconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
{
"name": "rematch-websocket",
"version": "1.1.6",
"description": "A redux middleware to handle websocket connections",
"main": "dist",
"files": [
"dist/**/*"
],
"scripts": {
"build": "npm run clean && npm run build:types && webpack && rimraf dist/__tests__",
"build:types": "tsc --emitDeclarationOnly --outdir dist",
"build:watch": "npm run clean && npm run build:types && webpack --watch",
"clean": "rimraf dist",
"check-types": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty --ignore-path .gitignore ./src ./demo",
"prepare": "npm run build",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mogita/rematch-websocket.git"
},
"keywords": [
"redux",
"rematch",
"websocket"
],
"author": "mogita <[email protected]>",
"license": "MIT",
"dependencies": {
"redux": "~4"
},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-typescript": "7.1.0",
"@types/jest": "24.0.1",
"@types/ws": "6.0.1",
"@typescript-eslint/eslint-plugin": "1.3.0",
"babel-loader": "8.0.4",
"eslint-config-airbnb-typescript": "1.1.0",
"eslint-formatter-pretty": "2.1.1",
"eslint-plugin-eslint-comments": "3.0.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.2.1",
"eslint-plugin-jsx-a11y": "6.2.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.12.4",
"eslint": "5.12.1",
"flux-standard-action": "2.1.0",
"jest": "24.1.0",
"redux-mock-store": "1.5.3",
"rimraf": "2.6.3",
"ts-jest": "24.0.1",
"typescript": "3.3.3",
"webpack-cli": "3.2.3",
"webpack": "4.29.3"
}
}