forked from AyushIyankan/Invento23-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.71 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
80
81
82
83
84
85
{
"name": "invento_23",
"version": "0.0.1",
"scripts": {
"develop": "run-p dev scss:watch",
"dev": "vite --host --open",
"build": "tsc && vite build",
"serve": "vite preview",
"type-check": "tsc",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\"",
"lint:test": "eslint --ext \".js,.jsx,.ts\" src",
"lint:fix": "eslint --fix src/**/*.{js,jsx,ts,tsx,json}",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,css,md,json} --config ./.prettierrc.js",
"scss:watch": "sass --watch src/scss/main.scss:src/scss/index.css",
"unlighthouse": "unlighthouse"
},
"dependencies": {
"@cloudinary/react": "^1.11.2",
"@cloudinary/url-gen": "^1.11.1",
"@hookform/resolvers": "^3.1.0",
"@vercel/analytics": "^1.0.2",
"framer-motion": "^10.12.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.43.9",
"react-query": "^3.39.3",
"react-router-dom": "^6.10.0",
"react-select": "^5.7.3",
"react-table": "^7.8.0",
"react-toastify": "^9.1.3",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-table": "^7.7.14",
"@types/uuid": "^9.0.1",
"@types/validator": "^13.7.15",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.22",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.61.0",
"typescript": "^4.5.5",
"unlighthouse": "^0.5.1",
"vite": "^2.9.12",
"vite-plugin-svgr": "^2.4.0"
},
"pre-commit": "lint",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write --config ./.prettierrc.js",
"eslint",
"eslint --fix"
]
},
"browserslist": [
"> 1%",
"last 10 versions"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
}
}