-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "redux-cablecar",
"version": "5.0.7",
"description": "Rails 6 ActionCable <-> Redux middleware",
"main": "./build/redux-cablecar.js",
"scripts": {
"build": "webpack --output-filename redux-cablecar.js --config webpack.config.js --devtool 'source-map'",
"prepublishOnly": "npm run build",
"test": "jest",
"watch": "webpack --output-filename redux-cablecar.js --config webpack.config.js --watch"
},
"author": "Nick Demarest",
"repository": {
"type": "git",
"url": "https://github.com/ndhays/redux-cablecar"
},
"keywords": [
"cablecar",
"actioncable",
"rails",
"rails5",
"redux",
"redux-cablecar"
],
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@reduxjs/toolkit": "^1.4.0",
"@types/actioncable": "^5.2.7",
"@types/jest": "^26.0.24",
"@types/redux-mock-store": "^1.0.3",
"babel-loader": "^8.2.3",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.3.1",
"redux-mock-store": "^1.5.4",
"ssri": ">=8.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.4.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"actioncable": "^5.2.6",
"redux": "^4.0.5"
}
}