-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·119 lines (119 loc) · 3.53 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "rea11y-easy-form",
"version": "0.3.11",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"files": [
"build"
],
"sideEffects": [
"*.less.js",
"*.css.js",
"*.less",
"*.css"
],
"types": "build/index.d.ts",
"description": "Accessible form library using react-final-form",
"scripts": {
"build:rollup": "rollup -c",
"build:clean": "rimraf build",
"build": "npm run build:clean && npm run build:rollup",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.js",
"test:watch": "jest --watch",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"generate": "node ./scripts/create-component"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mynamesleon/rea11y-easy-form.git"
},
"bugs": {
"url": "https://github.com/mynamesleon/rea11y-easy-form/issues"
},
"homepage": "https://mynamesleon.github.io/rea11y-easy-form",
"keywords": [
"React Form",
"final-form",
"react-final-form",
"React",
"Typescript"
],
"author": "Leon Slater",
"license": "MIT",
"peerDependencies": {
"final-form": ">=4.0.0",
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"react-final-form": ">=6.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@chromatic-com/storybook": "^2.0.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-actions": "^8.3.0",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/addon-mdx-gfm": "^8.3.0",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/react-webpack5": "^8.3.0",
"@storybook/test": "^8.3.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.5",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.0",
"@types/react-is": "^18.3.0",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-storybook": "^0.8.0",
"final-form": "^4.20.10",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-final-form": "^6.5.9",
"rimraf": "^6.0.1",
"rollup": "^4.21.3",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"storybook": "^8.3.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"dependencies": {
"@react-hookz/deep-equal": "^2.0.2",
"@react-hookz/web": "^24.0.4",
"aria-autocomplete": "^1.5.1",
"clone-deep": "^4.0.1",
"clsx": "^2.1.1",
"dompurify": "^3.1.6",
"final-form-arrays": "^3.1.0",
"final-form-set-field-data": "^1.0.2",
"react-beautiful-dnd": "^13.1.1",
"react-is": "^18.3.1",
"tabbable": "^6.2.0",
"use-constant": "^1.1.1"
}
}