forked from gskril/farcaster-indexer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 877 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
{
"name": "farcaster-indexer",
"author": "Greg Skriloff",
"license": "ISC",
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"start": "tsc && node ./dist/index.js",
"dev": "tsc && node ./dist/index.js",
"auth": "tsc && node ./dist/helpers/auth.js",
"migrate": "tsc && node ./dist/helpers/migrate-profiles.js",
"seed": "tsc && node ./dist/helpers/seed.js",
"seed:verifications": "tsc && node ./dist/helpers/seed.js --verifications"
},
"dependencies": {
"@standard-crypto/farcaster-js": "^5.5.2",
"@supabase/supabase-js": "^2.1.3",
"dotenv": "^16.0.1",
"ethers": "^5.7.2",
"got": "^11.8.2",
"node-cron": "3.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^18.7.21",
"prettier": "^2.8.1",
"typescript": "^4.8.3"
}
}