-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
138 lines (138 loc) · 4.21 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@trixtateam/phoenix-to-redux",
"version": "1.2.2",
"publishConfig": {
"access": "public"
},
"description": "Middleware for react-redux to map Redux Actions and Phoenix Channel Message Events",
"main": "dist/@trixtateam/phoenix-to-redux.cjs.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 <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/trixtateam/phoenix-to-redux/issues"
},
"homepage": "https://github.com/trixtateam/phoenix-to-redux#readme",
"scripts": {
"build": "kcd-scripts build --bundle 'esm,cjs' --no-clean",
"prebuild": "rimraf lib",
"clean": "yarn clean:modules",
"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",
"release": "semantic-release",
"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",
"prepublishOnly": "yarn run build",
"publish:lib": "npm publish --access public || true"
},
"lint-staged": {
"*.{js}": [
"yarn run lint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"engines": {
"node": ">=12"
},
"peerDependencies": {
"immer": ">=9.0.6",
"reselect": ">=4.0.0"
},
"dependencies": {
"phoenix": "~1.5.14"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/eslint-plugin": "^7.22.10",
"@babel/helpers": "^7.22.10",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@rollup/plugin-babel": "5.2.3",
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"babel-eslint": "10.1.0",
"babel-jest": "^28.1.3",
"babel-loader": "^8.3.0",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-no-side-effect-class-properties": "^0.0.7",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-react-app": "^10.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "~9.0.0",
"eslint-import-resolver-webpack": "0.13.6",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jest": "~26.5.3",
"eslint-plugin-prettier": "~5.0.0",
"husky": "^4.3.8",
"immer": "~9.0.6",
"jest": "^28.1.3",
"jest-cli": "26.6.3",
"kcd-scripts": "^8.0.2",
"pre-commit": "1.2.2",
"prettier": "~3.0.2",
"reselect": "~4.1.8",
"rimraf": "^5.0.1",
"rollup": "^2.40.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"semantic-release": "^17.4.7"
},
"directories": {
"doc": "docs",
"lib": "lib"
}
}