This repository was archived by the owner on Feb 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.22 KB
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
73
74
75
{
"name": "oaf-react-final-form",
"version": "0.53.0",
"main": "dist",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oaf-project/oaf-react-final-form.git"
},
"devDependencies": {
"@stryker-mutator/core": "^5.3.0",
"@stryker-mutator/jest-runner": "^5.3.0",
"@stryker-mutator/typescript-checker": "5.6.1",
"@types/jest": "^27.0.1",
"@types/jest-axe": "^3.5.2",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-typed-fp": "^1.6.0",
"eslint-plugin-functional": "^3.7.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sonarjs": "^0.11.0",
"eslint-plugin-total-functions": "^4.10.0",
"final-form": "^4.20.2",
"final-form-arrays": "^3.0.2",
"jest": "^27.1.0",
"jest-axe": "^5.0.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.3",
"react-final-form-arrays": "^3.1.3",
"ts-jest": "^27.0.5",
"type-coverage": "^2.18.1",
"typedoc": "^0.22.0",
"typescript": "^4.4.2"
},
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts,.tsx",
"type-coverage": "type-coverage",
"documentation": "typedoc --excludeNotExported --excludePrivate --exclude \"**/*+(.test).tsx\" --out docs src && cp docs_config.yml ./docs/_config.yml",
"test": "jest",
"release": "yarn build && yarn lint && yarn type-coverage && yarn test && yarn publish"
},
"peerDependencies": {
"react-final-form": "^6.5.1"
},
"dependencies": {
"fp-ts": "^2.11.1",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"monocle-ts": "^2.3.11",
"oaf-side-effects": "^3.1.0",
"total-functions": "^3.0.0",
"ts-essentials": "^8.1.0",
"type-zoo": "^3.4.1"
},
"prettier": {
"trailingComma": "all"
},
"typeCoverage": {
"atLeast": 99,
"strict": true,
"detail": true
}
}