-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 2.14 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
{
"name": "redux-tools",
"private": true,
"license": "MIT",
"repository": "https://github.com/lundegaard/redux-tools",
"contributors": [
"Tomas Konrady <tomas.konrady@lundegaard.eu>",
"Vaclav Jancarik <vaclav.jancarik@lundegaard.eu>",
"Martin Kadlec <martin.kadlec@lundegaard.eu>",
"Sergey Dunaevskiy <sergey.dunaevskiy@lundegaard.eu>"
],
"engines": {
"node": ">=10"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "7.8.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.8.3",
"@babel/plugin-transform-react-jsx": "7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "7.8.6",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "10.1.0",
"babel-jest": "25.1.0",
"cross-env": "7.0.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.4.4",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-config-react-union": "0.15.2",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "2.5.0",
"husky": "4.2.3",
"invariant": "2.2.4",
"jest": "25.1.0",
"lerna": "3.20.2",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"ramda": "0.27.0",
"ramda-extension": "0.10.2",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-observable": "1.2.0",
"rollup": "1.32.0",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "5.2.0",
"rxjs": "6.5.4",
"rxjs-marbles": "5.0.4",
"serve": "11.3.0"
},
"scripts": {
"test": "jest",
"lint": "yarn lint:eslint",
"lint:eslint": "eslint --ext .js ./",
"build": "lerna exec -- rollup -c=../../rollup.config.js",
"prepublish": "yarn build",
"docs": "serve docs"
}
}