generated from heroku/node-js-getting-started
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.15 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": "frame-eas",
"version": "0.1.0",
"description": "A sample frame server using Express, pushes frame actions into onchain attestations",
"engines": {
"node": "20.x"
},
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "npx nodemon index.js",
"build": "npx babel helpers/poll.jsx -d helpers"
},
"dependencies": {
"@cowprotocol/ts-dune-client": "^0.0.2",
"@ethereum-attestation-service/eas-sdk": "^1.4.0",
"@farcaster/hub-nodejs": "^0.10.21",
"@neynar/nodejs-sdk": "^1.9.0",
"axios": "^1.6.7",
"dotenv": "^16.4.1",
"ejs": "^3.1.5",
"ethers": "^6.10.0",
"express": "^4.15.2",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"node-fetch": "^3.3.2",
"nodemon": "^3.0.3",
"react": "^18.2.0",
"satori": "^0.10.11",
"sharp": "^0.33.2",
"viem": "^2.6.0"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-react": "^7.23.3"
}
}