-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "@wwt-as/validated-actions",
"version": "1.1.1",
"description": "A middleware and higher order function to enable validation of actions before they ever reach a reducer",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prepublishOnly": "npm i && npm run lint && npm run test && npm run build",
"build": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"repository": {
"type": "git",
"url": "https://github.com/wwt/validated-actions",
"email": "[email protected]"
},
"keywords": [
"redux",
"action",
"typescript",
"ts",
"validation",
"typesafe",
"typechecking"
],
"author": "[email protected]",
"license": "Apache-2.0",
"devDependencies": {
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/react": "^11.2.2",
"@types/chance": "^1.1.1",
"@types/jest": "^26.0.18",
"@types/react-redux": "^7.1.12",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"ajv": "^6.12.6",
"chance": "^1.1.7",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"fp-ts": "^2.9.1",
"io-ts": "^2.2.13",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"ts-jest": "^26.4.4",
"typesafe-actions": "^5.1.0",
"typescript": "^4.1.2",
"yup": "^0.32.8"
},
"dependencies": {}
}