-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.96 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
{
"name": "reduxwork",
"version": "2.0.7",
"repository": "https://github.com/michalkow/reduxwork.git",
"description": "Framework for creating redux actions and reducers that get data from server via ajax of websockets",
"main": "dist/index.js",
"dependencies": {
"bluebird": "^3.7.2",
"lodash": "4.17.21",
"normalizr": "^3.6.1",
"uuid": "^8.3.2"
},
"peerDependencies": {
"redux": "^4.0.1",
"@redux-offline/redux-offline": "^2.5.2"
},
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/plugin-transform-async-to-generator": "7.2.0",
"@babel/plugin-transform-regenerator": "7.0.0",
"@babel/preset-env": "7.2.0",
"@redux-offline/redux-offline": "^2.5.2",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-promise-to-bluebird": "2.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"body-parser": "1.17.2",
"cookie-parser": "1.4.3",
"es6-promise": "4.1.0",
"eslint": "^5.13.0",
"eslint-plugin-import": "2.16.0",
"express": "4.15.3",
"isomorphic-fetch": "2.2.1",
"jest": "24.1.0",
"morgan": "1.9.1",
"redux": "^4.0.1",
"redux-logger": "3.0.6",
"redux-mock-store": "1.5.3",
"redux-persist-node-storage": "^2.0.0",
"redux-thunk": "2.3.0",
"socket.io": "2.2.0",
"socket.io-client": "2.2.0"
},
"scripts": {
"test": "jest tests --detectOpenHandles --forceExit",
"test-server": "babel-node tests/test-server.js",
"build": "babel source -d dist",
"prepublish": "babel source -d dist",
"devTest": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand"
},
"keywords": [
"redux",
"socket.io",
"fetch",
"ajax",
"helpers",
"freamwork"
],
"author": "Michał Kowalkowski",
"license": "MIT",
"directories": {
"test": "tests"
}
}