-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.3 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
{
"name": "@adeattwood/react-form",
"version": "0.0.1-alpha.8",
"description": "UI agnostic form abstraction for React",
"repository": "AdeAttwood/ReactForm",
"author": {
"name": "Ade Attwood",
"email": "[email protected]",
"url": "https://adeattwood.co.uk"
},
"main": "./lib/index.js",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*",
"README.md"
],
"keywords": [
"react",
"form"
],
"size-limit": [
{
"path": "lib/index.js",
"limit": "10 kB"
}
],
"scripts": {
"docs:dev": "next dev docs",
"docs:build": "next build docs",
"test": "jest",
"lint": "eslint src tests docs",
"build": "tsc",
"size": "yarn run build && size-limit"
},
"devDependencies": {
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.4",
"@popperjs/core": "^2.11.6",
"@size-limit/preset-small-lib": "^11.0.1",
"@testing-library/dom": ">=9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.11",
"@types/node": "20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.2",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next": "^14.0.4",
"prettier": "^3.1.1",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-gfm": "^4.0.0",
"sass": "^1.69.5",
"size-limit": "^11.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}