-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "reaction-formula",
"version": "2.0.3",
"description": "Reaction formula is a hook for simple form validation in react applications.",
"main": "./dist/index.js",
"scripts": {
"build": "webpack",
"lint": "npx eslint --color ./src",
"test": "jest --verbose --colors --watchAll ./src",
"pre-test": "jest --verbose --colors ./src",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zharinov-nikita/reaction-formula.git"
},
"keywords": [
"reaction-formula",
"react",
"react hooks",
"validation",
"forms"
],
"author": "zharinov-nikita",
"license": "ISC",
"bugs": {
"url": "https://github.com/zharinov-nikita/reaction-formula/issues"
},
"homepage": "https://github.com/zharinov-nikita/reaction-formula#readme",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.3",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.25",
"@types/validator": "^13.7.12",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"generate-react-cli": "^8.0.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.4.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"files": [
"dist"
],
"dependencies": {
"validator": "^13.9.0"
}
}