generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.35 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
{
"name": "recipe-app",
"private": true,
"version": "0.0.33",
"type": "module",
"scripts": {
"dev": "vite",
"cz": "cz",
"build": "vite build",
"lint": "eslint . --fix",
"test": "npx playwright test",
"preview": "vite preview",
"prettier:check": "prettier . --check",
"prettier:format": "prettier . --write",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"prepare": "husky install",
"host": "vite --host"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run prettier:format",
"npm run lint"
]
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "^4.36.1",
"axios": "^1.5.1",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-query": "^3.39.3",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.4.3"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@commitlint/prompt-cli": "^17.7.2",
"@playwright/test": "^1.38.1",
"@tanstack/eslint-plugin-query": "^4.36.0",
"@types/node": "^20.8.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.16",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"miragejs": "^0.1.47",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"standard-version": "^9.5.0",
"tailwindcss": "^3.3.3",
"vite": "^4.4.5",
"vite-plugin-eslint": "^1.8.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}