-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1019 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
31
32
33
{
"name": "logstore-examples",
"version": "1.0.0",
"description": "LogStore Examples",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"query": "tsx src/basic/query.ts",
"store": "tsx src/basic/store.ts",
"listen": "tsx src/listen-to-contract/listen.ts",
"trigger": "tsx src/listen-to-contract/trigger.ts",
"gas-station:query": "tsx src/gas-station/query.ts",
"terminal-chat:publish-data": "tsx src/terminal-chat/createDataOnStream.ts",
"terminal-chat:query-subscribe": "tsx src/terminal-chat/queryAndSubscribe.ts",
"terminal-chat:query-verify": "tsx src/terminal-chat/queryAndVerify.ts",
"format": "prettier --write \"**/*.{ts,tsx,json}\""
},
"dependencies": {
"@logsn/client": "^0.0.20",
"@streamr/sdk": "^100.1.2",
"@streamr/utils": "^100.1.2",
"dotenv": "^16.3.1",
"ethers": "^5.7.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^18.15.3",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.3.2"
}
}