-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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
{
"name": "re-use-form",
"version": "3.10.1",
"description": "Easy-to-use React form hooks with built-in validation support",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "webpack-dev-server --mode development",
"test": "mocha --require @babel/register --require @babel/polyfill --require ./test/setup.js --recursive",
"test:watch": "npm run test -- --watch",
"lint": "eslint src test examples --ext .js --ext .jsx",
"lint:fix": "eslint src test examples --fix --ext .js --ext .jsx",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile"
},
"keywords": [
"react",
"hook",
"hooks",
"form",
"validation",
"i18n"
],
"author": "Artem Kuzko <[email protected]> (https://github.com/akuzko)",
"homepage": "https://github.com/akuzko/re-use-form",
"repository": "https://github.com/akuzko/re-use-form.git",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.6 || ^17.0.1 || ^18.0.0",
"react-dom": "^16.8.6 || ^17.0.1 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.14.3",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^14.0.0",
"mocha": "^9.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sinon": "^7.3.2",
"style-loader": "^0.23.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"get-lookup": "^1.1.2",
"update-js": "^1.7.3"
}
}