-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.41 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-ocean-forms",
"version": "3.0.0-rc.1",
"description": "Forms components for react based on the context api.",
"main": "build/index.js",
"module": "build/index.es.js",
"typings": "build/index.d.ts",
"private": false,
"sideEffects": false,
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "rollup -c -w",
"build": "rollup -c",
"lint": "eslint \"src/**\"",
"start:docs": "styleguidist server",
"build:docs": "styleguidist build",
"build:typedocs": "typedoc"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@testing-library/react-hooks": "^3.2.1",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.26",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-eslint": "^10.1.0",
"coveralls": "^3.0.11",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.2.3",
"prettier": "^2.0.2",
"react": "^16.13.1",
"react-docgen-typescript": "^1.16.3",
"react-dom": "^16.13.1",
"react-styleguidist": "^11.0.4",
"react-test-renderer": "^16.13.1",
"rollup": "^2.2.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.2",
"typedoc": "^0.17.3",
"typedoc-plugin-external-module-name": "^3.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
},
"resolutions": {
"@types/react": "16.9.26",
"@types/enzyme": "^3.10.5"
},
"files": [
"build/"
],
"repository": {
"type": "git",
"url": "https://github.com/environment-agency-austria/react-ocean-forms.git"
},
"keywords": [
"react",
"reactjs",
"forms",
"form",
"validation",
"react-form",
"react-forms",
"react-input",
"context"
],
"author": "Denis Masinovic <[email protected]>",
"license": "MIT"
}