-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.65 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
56
57
58
{
"name": "zustandreact",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build"
},
"dependencies": {
"axios": "^1.3.4",
"bootstrap5": "^1.1.9",
"formik": "^2.4.2",
"framer-motion": "^10.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-player": "^2.12.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.9.0",
"react-select": "^5.7.3",
"react-social-icons": "^5.15.0",
"react-type-animation": "^3.1.0",
"yup": "^1.0.2",
"zustand": "^4.3.6"
},
"devDependencies": {
"@types/json-schema": "^7.0.12",
"@types/react-dom": "^18.2.4",
"@types/scheduler": "^0.16.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-react": "^7.32.2",
"husky": ">=7",
"lint-staged": "^13.0.3",
"postcss": "^8.4.24",
"prettier": "^2.8.4",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"vite": "^4.2.0"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}