forked from airjp73/rvf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.29 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
75
76
77
78
79
{
"name": "remix-validated-form",
"version": "1.1.1",
"description": "Form component and utils for easy form validation in remix",
"browser": "./browser/index.js",
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/airjp73/remix-validated-form"
},
"sideEffects": false,
"scripts": {
"build": "npm run build:browser && npm run build:main && npm run build:tests",
"build:browser": "tsc --project tsconfig.json --module ESNext --outDir ./browser",
"build:main": "tsc --project tsconfig.json --module CommonJS --outDir ./build",
"build:tests": "tsc --project tsconfig.json --module CommonJS --outDir ./test-app/remix-validated-form",
"test": "jest src",
"lint": "eslint .",
"prettier": "prettier . --write",
"prepare": "husky install",
"prepublishOnly": "npm run build:browser && npm run build:main"
},
"author": {
"name": "Aaron Pettengill",
"email": "[email protected]",
"url": "https://github.com/airjp73"
},
"license": "MIT",
"keywords": [
"remix",
"remix.run",
"react",
"form",
"yup",
"validation"
],
"peerDependencies": {
"@remix-run/react": "^1.0.0",
"@remix-run/server-runtime": "^1.0.0",
"react": "^17.0.2"
},
"devDependencies": {
"@remix-run/react": "^1.0.0",
"@remix-run/server-runtime": "^1.0.0",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fetch-blob": "^3.1.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"react": "^17.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2",
"yup": "^0.32.11",
"zod": "^3.11.6"
},
"dependencies": {
"tiny-invariant": "^1.2.0"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --cache --fix"
]
}
}