-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "examchain",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx next dev",
"build": "npx next build",
"start": "npx next start",
"lint": "npx next lint",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"zod": "^3.24.1",
"@pinata/sdk": "^2.1.0",
"@solana/web3.js": "^1.95.4",
"bcryptjs": "^2.4.3",
"jose": "^5.9.6",
"next": "14.2.18",
"pdf-parse": "^1.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.9",
"react-hot-toast": "^2.4.1",
"uuid": "^10.0.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.9.0",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.18",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3"
}
}