-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.63 KB
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
{
"name": "react-validon",
"version": "0.8.3",
"description": "React validation library",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"author": "VZH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vlazh/react-validon"
},
"keywords": [
"react",
"react validation",
"react form validation",
"validation",
"validators",
"form"
],
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && tsc --project ./tsconfig.json",
"patch-publish": "npm run build && npm version patch && npm publish && git push --follow-tags",
"minor-publish": "npm run build && npm version minor && npm publish && git push --follow-tags",
"major-publish": "npm run build && npm version major && npm publish && git push --follow-tags"
},
"devDependencies": {
"@js-toolkit/configs": "^3.77.2",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "17.0.8",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.0",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.2"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"nano-memoize": "^1.2.1"
},
"peerDependencies": {
"react": ">= 16.x"
},
"prettier": "@js-toolkit/configs/prettier"
}