-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 943 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
34
35
36
{
"name": "sequencer",
"version": "1.0.0",
"main": "app.js",
"repository": "https://github.com/laudiacay/p1nch",
"author": "binch",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node src/app.ts",
"build": "tsc --resolveJsonModule",
"serve": "node dist/app.js",
"lint": "eslint 'src/**/*.{ts,tsx}' --fix"
},
"dependencies": {
"@cedoor/smt": "^0.1.7",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"circomlib": "^2.0.5",
"ethers": "^6.2.3",
"express": "^4.18.2",
"ioredis": "^5.3.1",
"node-cron": "^3.0.2",
"snarkjs": "^0.6.10"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"create-nx-workspace": "^15.9.2",
"eslint": "^8.37.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}