forked from trixtateam/phoenix-to-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.23 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
113
114
115
116
{
"name": "@trixta/phoenix-to-redux",
"version": "3.5.1-beta.0",
"publishConfig": {
"access": "public"
},
"description": "Middleware for react-redux to map Redux Actions and Phoenix Channel Message Events",
"main": "lib/bundle.cjs.js",
"module": "lib/bundle.esm.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/trixtateam/phoenix-to-redux.git"
},
"keywords": [
"phoenix",
"phoenix-js",
"phoenix-channels",
"channels",
"react",
"redux",
"websocket",
"middleware",
"channel",
"message",
"action"
],
"author": "jacqueswho <jacqueswho@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trixtateam/phoenix-to-redux/issues"
},
"homepage": "https://github.com/trixtateam/phoenix-to-redux#readme",
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c",
"prebuild": "rimraf lib",
"clean": "yarn clean:modules && yarn clean:cache",
"clean:modules": "rimraf node_modules",
"lint": "yarn run eslint src --ignore-path .gitignore",
"lint:fix": "yarn run lint --fix",
"lint:staged": "lint-staged",
"prettify": "prettier --write",
"prepare": "npm run build",
"major": "npm --no-git-tag-version version premajor --preid=beta",
"patch": "npm --no-git-tag-version version prepatch --preid=beta",
"minor": "npm --no-git-tag-version version preminor --preid=beta",
"test:clean": "rimraf ./coverage",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:staged": "jest --findRelatedTests"
},
"lint-staged": {
"*.{js}": [
"yarn run lint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"engines": {
"node": ">=6"
},
"peerDependencies": {
"phoenix": "~1.5.9",
"reselect": ">=4.0.0",
"immer": ">=8.0.1"
},
"dependencies": {
"immer": "~8.0.1",
"phoenix": "~1.5.9"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"babel-eslint": "10.1.0",
"babel-plugin-dynamic-import-node": "2.3.3",
"eslint": "7.6.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-import-resolver-webpack": "0.12.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.5",
"eslint-plugin-react-hooks": "4.0.8",
"eslint-plugin-redux-saga": "1.1.3",
"husky": "^4.2.5",
"jest": "26.6.3",
"jest-cli": "26.6.3",
"pre-commit": "1.2.2",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.23.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.13",
"rollup-plugin-filesize": "^9.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.0"
},
"directories": {
"doc": "docs",
"lib": "lib"
}
}