-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "better-redux-tests",
"version": "0.1.0",
"description": "Source code for my article \"A better approach for testing your Redux code\"",
"main": "src/index.js",
"repository": "https://github.com/hbarcelos/better-redux-tests.git",
"author": "Henrique Barcelos <[email protected]>",
"license": "Unlicense",
"private": false,
"browserslist": [
"last 1 chrome version",
"maintained node versions"
],
"scripts": {
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.7.2",
"@babel/runtime-corejs3": "^7.7.2",
"@reduxjs/toolkit": "^1.0.4",
"core-js": "^3.0.0",
"cuid": "^2.1.6",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"eslint": "^6.7.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"prettier-config-standard": "^1.0.1",
"redux-mock-store": "^1.5.3"
}
}