-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.81 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ugig.net",
"version": "1.1.4",
"private": true,
"description": "A marketplace for AI-assisted engineers and skilled workers.",
"scripts": {
"dev": "next dev -p 8080",
"build": "NODE_OPTIONS=\"--max-old-space-size=1024\" next build",
"start": "next start -p 8080",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"precommit": "pnpm lint && pnpm type-check && pnpm test:run && pnpm build",
"postinstall": "git rev-parse --is-inside-work-tree > /dev/null 2>&1 && git config core.hooksPath hooks || true",
"version:patch": "node scripts/version-bump.js patch",
"version:minor": "node scripts/version-bump.js minor",
"version:major": "node scripts/version-bump.js major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/profullstack/ugig.net.git"
},
"keywords": [
"marketplace",
"freelance",
"ai",
"gig-economy"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/profullstack/ugig.net/issues"
},
"homepage": "https://github.com/profullstack/ugig.net#readme",
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@stripe/stripe-js": "^8.6.1",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.90.1",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.23",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"lucide-react": "^0.562.0",
"mammoth": "^1.11.0",
"nanoid": "^5.1.6",
"next": "^16.1.1",
"openai": "^6.16.0",
"postcss": "^8.5.6",
"qrcode.react": "^4.2.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.71.0",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"resend": "^6.7.0",
"stripe": "^20.1.2",
"swagger-ui-react": "^5.31.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"unpdf": "^1.4.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^25.0.6",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/swagger-ui-react": "^5.18.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"jsdom": "^27.4.0",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}