-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1019 Bytes
/
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
{
"name": "linkedin-resolver",
"description": "LinkedIn resolving Vercel serverless function",
"private": true,
"type": "module",
"version": "0.0.0",
"license": "UNLICENSED",
"author": {
"name": "Vasanth Srivatsa",
"url": "https://vsnth.dev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/introbotai/linkedin-resolver.git"
},
"scripts": {
"lint": "eslint . --fix",
"postinstall": "prisma generate",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-plugin-perfectionist": "^2.10.0",
"husky": "^9.0.11",
"typescript": "^5.4.5"
},
"dependencies": {
"@prisma/client": "5.14.0",
"@vercel/node": "^3.1.5",
"mixpanel": "^0.18.0",
"prisma": "^5.14.0",
"serverless-utilities": "^0.0.22",
"vercel": "^34.2.0",
"zod": "^3.23.8"
}
}