-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.07 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
{
"name": "@mc-petry/useform",
"main": "dist/useform.cjs.js",
"module": "dist/useform.es.js",
"typings": "dist/useform.d.ts",
"version": "3.0.0-next.5",
"description": "React form hook",
"files": [
"dist"
],
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@emotion/react": "^11.9.0",
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/react-hooks": "^8.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^8.14.0",
"express": "^4.17.3",
"framer-motion": "^6.3.2",
"history": "^5.3.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "2.6.2",
"prismjs": "^1.28.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0",
"react-test-renderer": "^18.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"vite": "^2.9.5"
},
"scripts": {
"dev": "vite",
"prerender": "node prerender.js",
"build": "run-s build:*",
"build:lib": "tsc && vite build",
"build:dts": "rollup -c",
"docs": "run-s docs:*",
"docs:server": "vite build --mode server --ssr src/__docs__/entry-server.tsx",
"docs:site": "tsc && vite build --mode site && pnpm run prerender",
"serve": "pnpx http-server",
"test": "jest --verbose",
"prepublishOnly": "run-s build test",
"prettify": "prettier --write \"./src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mc-petry/useform.git"
},
"keywords": [
"react",
"forms"
],
"author": "mc-petry",
"license": "MIT",
"bugs": {
"url": "https://github.com/mc-petry/useform/issues"
},
"homepage": "https://mc-petry.github.io/useform/"
}