-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.36 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
67
68
69
70
71
72
73
74
75
{
"name": "pdf-analyzer",
"version": "0.0.1",
"private": true,
"engines": {
"node": "18.x"
},
"scripts": {
"dev": "npx prisma generate && vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"compile": "npx solcjs --bin --abi --include-path node_modules/ --base-path contracts/ -o contracts/artifacts/ ./contracts/Storage.sol"
},
"devDependencies": {
"@metamask/providers": "^10.2.1",
"@playwright/test": "^1.32.3",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-vercel": "^2.4.3",
"@sveltejs/kit": "^1.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.14",
"chai": "^4.3.7",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"prettier-plugin-svelte": "^2.8.1",
"prisma": "^4.13.0",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-youtube-embed": "^0.1.8",
"tailwindcss": "^3.2.7",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.2.0",
"vitest": "^0.30.1"
},
"type": "module",
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@ethersproject/bignumber": "^5.7.0",
"@huggingface/hub": "^0.3.3",
"@huggingface/inference": "^1.6.2",
"@metamask/detect-provider": "^2.0.0",
"@pinecone-database/pinecone": "^0.0.14",
"@prisma/client": "^4.13.0",
"@types/markdown-it": "^12.2.3",
"@vercel/node": "^2.14.0",
"@vercel/postgres": "^0.1.3",
"daisyui": "^2.51.6",
"ethers": "^6.3.0",
"formdata-node": "^5.0.0",
"fs": "0.0.1-security",
"jsonwebtoken": "^9.0.0",
"langchain": "^0.0.72",
"markdown-it": "^13.0.1",
"openai": "^3.2.1",
"pdf-parse": "^1.1.1",
"solc": "^0.8.20",
"sse.js": "^0.6.1",
"svelte-french-toast": "1.0.4-beta.0",
"zod": "^3.21.4"
}
}