-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@topocount/gasless-conviction-service",
"version": "0.0.1",
"description": "A service that periodically calculates conviction using the Ethereum blockchain and Ceramic",
"author": "Kevin Siegler <[email protected]>",
"license": "MIT",
"scripts": {
"prettify": "npx prettier -w '**/*.{ts,js,md,yml}'",
"check-pretty": "npx prettier -c '**/*.{ts,js,md,yml}'",
"lint": "eslint .",
"start": "npx ts-node src/server.ts",
"test": "./scripts/test.sh"
},
"devDependencies": {
"@ceramicnetwork/cli": "^1.2.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@tsconfig/node14": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.13",
"@types/node-cron": "^2.0.4",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.4.0",
"ganache-core": "^2.13.2",
"hardhat": "^2.6.4",
"hardhat-watcher": "^2.1.1",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"wait-on": "^6.0.0"
},
"dependencies": {
"3id-did-provider": "^1.1.0",
"@3id/connect": "^0.1.6",
"@ceramicnetwork/3id-did-resolver": "^1.2.7",
"@ceramicnetwork/http-client": "^1.1.1",
"@ceramicnetwork/stream-caip10-link": "1.0.0",
"@ceramicnetwork/stream-tile": "^1.0.7",
"@ceramicstudio/idx": "^0.12.1",
"@ceramicstudio/idx-tools": "^0.11.0",
"bignumber.js": "^9.0.1",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dids": "^2.4.0",
"dotenv": "^10.0.0",
"ethers": "^5.4.6",
"express": "^4.17.1",
"key-did-provider-ed25519": "^1.1.0",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1"
}
}