-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "watchers-eye-search",
"version": "0.0.4",
"scripts": {
"start": "npm run build:css && concurrently \"npm run watch:css\" \"vite\"",
"watch:css": "npx tailwindcss -i ./src/index.css -o ./src/styles.css --watch",
"build:css": "npx tailwindcss -i ./src/index.css -o ./src/styles.css",
"build": "tsc && npm run build:css && vite build",
"preview": "vite preview",
"lint": "eslint --ignore-path .eslintignore ./ --ext .ts,.tsx",
"lint:fix": "eslint --ignore-path .eslintignore --fix ./ --ext .ts,.tsx",
"format": "prettier --ignore-path .prettierignore --write \"**/*.+(ts|tsx|json)\"",
"test": "jest",
"release": "standard-version"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix",
"npm run format"
]
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@tanstack/react-query": "^4.29.3",
"axios": "^1.3.6",
"concurrently": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-router": "^6.10.0",
"react-router-dom": "^6.10.0",
"react-toastify": "^9.1.2",
"vike": "^0.4.160",
"vite-tsconfig-paths": "^4.2.0",
"yup": "^1.1.1",
"zustand": "^4.3.7"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-react-swc": "^3.3.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"sass": "^1.62.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"vite": "^4.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Vindexus/watchers-eye-search.git"
}
}