-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.8 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.8 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
{
"name": "server",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"predev": "node bin/validate-env && node bin/check-x-login",
"dev": "tsc-watch --noClear --onEmitDebounceMs 15000 --onSuccess \"pnpm run www-dev\"",
"build": "tsc && pnpm run generate-types",
"start": "node dist/index.js",
"lint": "prettier --write . && eslint . --fix --config .eslintrc.json",
"www-dev": "node bin/www-dev",
"generate-types": "typechain --node16-modules --target ethers-v6 --out-dir src/contracts/types 'src/contracts/abis/*.json'"
},
"dependencies": {
"@ai16z/adapter-sqlite": "0.1.5-alpha.3",
"@ai16z/eliza": "0.1.5-alpha.3",
"@ai16z/plugin-bootstrap": "0.1.5-alpha.3",
"@grammyjs/conversations": "^1.2.0",
"@nevermined-io/sdk": "^3.1.0",
"@ngrok/ngrok": "^1.4.1",
"@solana/web3.js": "^1.98.0",
"agent-twitter-client": "^0.0.18",
"axios": "^1.7.7",
"better-sqlite3": "^11.6.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ethers": "^6.9.0",
"express": "^4.21.1",
"grammy": "^1.32.0",
"http-errors": "^2.0.0",
"jsonc-parser": "^3.3.1",
"node-cache": "^5.1.2",
"prettier": "^3.4.2",
"tsc-watch": "^6.2.1"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"@types/better-sqlite3": "^7.6.12",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/http-errors": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.17.6",
"@types/node-cache": "^4.2.5",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8",
"typechain": "^8.3.2",
"typescript": "^5"
}
}