-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "react-forms-demos",
"private": true,
"version": "0.4.1",
"scripts": {
"dev": "vite",
"tailwind:dev": "tailwindcss -i ./src/styles/tailwind.css -o ./src/styles/output.css --watch",
"tailwind:build": "tailwindcss -o ./src/styles/output.css --minify",
"build": "npm run tailwind:build && tsc && vite build",
"preview": "vite preview",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,mdx}\""
},
"dependencies": {
"final-form": "^4.20.7",
"formik": "^2.2.9",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-final-form": "^6.5.9",
"react-hook-form": "^7.33.1"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.5",
"typescript": "^4.6.3",
"vite": "^2.9.9"
}
}