-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.81 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
{
"name": "react-happy-form",
"description": "Simple, Easy to use, Powerful form tools!",
"version": "1.3.3",
"repository": {
"type": "git",
"url": "https://github.com/react-earth/react-happy-form.git"
},
"author": "easilyjs",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c && rimraf dist/types",
"prepublishOnly": "npm run build",
"test": "tsc --noEmit & jest",
"release": "release-it",
"app:install": "npm --prefix=app install",
"app:start": "npm --prefix=app start",
"app:build": "npm --prefix=app run build"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"dependencies": {
"object-standard-path": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.184",
"@types/react": "^17.0.0",
"auto-changelog": "^2.4.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"release-it": "^15.6.0",
"rimraf": "^3.0.0",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-node-externals": "^4.0.0",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"keywords": [
"react",
"hooks",
"form",
"forms",
"form-validation",
"validation",
"typescript",
"react-hooks"
]
}