forked from JoshuaKGoldberg/mock-react-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.95 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
{
"author": "Codecademy",
"description": "Mocks out Redux actions and selectors for clean React Jest tests.",
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.3",
"@types/lodash.mapvalues": "^4.6.6",
"@types/redux-mock-store": "^1.0.2",
"@types/testing-library__react": "^10.0.1",
"@typescript-eslint/eslint-plugin": "3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-jest": "^26.0.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.6",
"lodash": "^4.17.21",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"typescript": "^3.9.3"
},
"main": "src/index.js",
"homepage": "https://github.com/Codecademy/mock-react-redux#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"mock",
"redux",
"jest",
"tests",
"spies",
"dispatch",
"selectors",
"hooks"
],
"license": "MIT",
"lint-staged": {
"**/*.{js,json,ts,xml,yml,yaml}": [
"prettier --write"
]
},
"name": "mock-react-redux",
"repository": {
"type": "git",
"url": "git+https://github.com/Codecademy/mock-react-redux.git"
},
"scripts": {
"compile": "tsc --module commonjs",
"format": "yarn prettier --write",
"format:verify": "yarn prettier --list-different \"**/*.{js,json,md,ts,yml}\"",
"format:write-all": "yarn format:verify --write",
"lint": "eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives",
"test": "jest",
"test:ci": "jest --maxWorkers=2"
},
"types": "src/index.d.ts",
"version": "0.4.0",
"dependencies": {
"@types/react": "^16.9.35",
"@types/react-redux": "^7.1.9",
"lodash.mapvalues": "^4.6.0"
}
}