-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.23 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.23 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
{
"name": "linkpilot",
"version": "1.0.0",
"description": "AI-Powered LinkedIn Assistant (JavaScript Edition)",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"db:init": "node scripts/init-db.js",
"db:init:sample": "node scripts/init-db.js --sample-data",
"db:test": "node scripts/test-db.js"
},
"type": "module",
"keywords": [
"nextjs",
"mongodb",
"openai",
"puppeteer",
"linkedin",
"ai"
],
"author": "mojitote",
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^9.9.0",
"@huggingface/inference": "^4.5.1",
"chrome-aws-lambda": "^10.1.0",
"dotenv": "^17.2.0",
"mongodb": "^5.9.2",
"next": "^15.3.5",
"next-auth": "^4.24.11",
"openai": "^4.30.0",
"puppeteer-core": "^10.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zustand": "^5.0.6"
},
"devDependencies": {
"@types/react": "19.1.8",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"jsdom": "^23.0.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "5.8.3",
"vitest": "^1.0.0"
}
}