-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "@egytech.fyi/website",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@9.11.0",
"description": "Explore the latest trends in the Egyptian tech market, analyze salaries, and get personalized negotiation strategies based on your CV.",
"homepage": "https://v2.egytech.fyi",
"repository": "https://github.com/egytech-fyi/website-v2",
"engines": {
"node": ">=20.15.1",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"scripts": {
"dev": "nuxt dev --host",
"build": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && pnpm simple-git-hooks",
"lint": "eslint . --cache",
"lint:fix": "pnpm lint --fix",
"format": "prettier . --check --cache",
"format:fix": "pnpm format --write",
"automd": "pnpm dlx automd@latest"
},
"dependencies": {
"@antfu/eslint-config": "^2.27.3",
"@iconify-json/ph": "^1.2.0",
"@nuxt/eslint": "^0.3.13",
"@nuxt/fonts": "^0.7.2",
"@nuxtjs/seo": "2.0.0-rc.16",
"@scalar/api-reference": "^1.25.22",
"@vueuse/nuxt": "^10.11.1",
"apexcharts": "^3.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"lint-staged": "^15.2.10",
"nuxt": "^3.13.2",
"prettier": "^3.3.3",
"shadcn-docs-nuxt": "^0.2.2",
"shadcn-nuxt": "^0.10.4",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.2",
"vue3-apexcharts": "^1.6.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm format:fix"
}
}