-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 3.05 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
{
"name" : "geekylifehacks",
"description" : "GeekyLifeHacks offers affordable, practical solutions to everyday problems. We specialise in developing innovative, user-friendly tools and services that simplify tasks and enhance efficiency. From weather alerts to AI-powered security features and automated software installation scripts, our vision is to make technologies accessible and solutions cost-effective for the needs of individuals and businesses alike.",
"version" : "1.0.0",
"author" : {
"name" : "Alan Tai"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/ayltai/geekylifehacks"
},
"bugs" : {
"url" : "https://github.com/ayltai/geekylifehacks/issues"
},
"type" : "module",
"scripts" : {
"clean" : "pnpm dlx rimraf --glob **/node_modules/* pnpm-lock.yaml",
"reset" : "pnpm clean && pnpm i && pnpm audit -P",
"pretest" : "pnpm lint",
"lint" : "eslint src",
"build" : "tsc && vite build",
"start" : "vite --host 0.0.0.0 --open",
"serve" : "vite preview"
},
"dependencies" : {
"@ant-design/colors" : "^7.2.0",
"@ant-design/icons" : "^5.5.2",
"@contentful/rich-text-html-renderer" : "^17.0.0",
"antd" : "^5.22.7",
"contentful" : "^11.4.0",
"i18next" : "^24.2.0",
"i18next-browser-languagedetector" : "^8.0.2",
"mdb-react-ui-kit" : "^9.0.0",
"react" : "^19.0.0",
"react-dom" : "^19.0.0",
"react-i18next" : "^15.4.0",
"react-router" : "^7.1.1",
"usehooks-ts" : "^3.1.0"
},
"devDependencies" : {
"@eslint/eslintrc" : "^3.2.0",
"@eslint/js" : "^9.17.0",
"@stylistic/eslint-plugin-ts" : "^2.12.1",
"@types/eslint__js" : "^8.42.3",
"@types/node" : "^22.10.3",
"@types/react" : "^19.0.2",
"@types/react-dom" : "^19.0.2",
"@typescript-eslint/parser" : "^8.19.0",
"@vitejs/plugin-react-swc" : "^3.7.2",
"eslint" : "^9.17.0",
"eslint-plugin-import" : "^2.31.0",
"eslint-plugin-prefer-arrow" : "^1.2.3",
"eslint-plugin-react" : "^7.37.3",
"eslint-plugin-react-hooks" : "^5.1.0",
"eslint-plugin-unicorn" : "^56.0.1",
"jsdom" : "^25.0.1",
"prop-types" : "^15.8.1",
"typescript" : "^5.7.2",
"typescript-eslint" : "^8.19.0",
"vite" : "^6.0.6"
},
"engines" : {
"node" : ">=20",
"pnpm" : ">=8"
}
}