-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "farcaster-token-bot",
"version": "1.0.0",
"description": "",
"main": "lib/src/index.js",
"scripts": {
"lint": "eslint --ext .js,.ts ..",
"build": "tsc",
"build:watch": "tsc -w",
"start": "node lib/index.js",
"start:watch": "nodemon lib/index.js",
"test": "jest test --runInBand --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limone-eth/farcaster-token-bot.git"
},
"keywords": [
"web3js",
"node",
"typescript",
"express"
],
"author": "limone-eth",
"license": "ISC",
"dependencies": {
"@airstack/node": "^0.0.5",
"@apollo/client": "^3.8.8",
"@standard-crypto/farcaster-js-neynar": "^2.0.0",
"@types/node-cron": "^3.0.11",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/node": "^14.11.8",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.6.1",
"typescript": "^4.5.4"
}
}