-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 1.06 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm clean && pnpm build && concurrently -n \"build,run\" \"pnpm build:watch\" \"pnpm start:watch\"",
"start": "node --env-file ./.env --enable-source-maps --disable-proto=throw --disallow-code-generation-from-strings ./build/main.js",
"start:watch": "nodemon --delay 0.1 -w ./build -w ./views ./queries -w ./.env -w ./package.json -e .js,.mjs,.cts,.json,.sql,.html,.hbs,.ejs,.njk -x \"pnpm start\"",
"build": "tsc -p ./tsconfig.json",
"build:watch": "pnpm build --watch --preserveWatchOutput",
"clean": "rimraf ./build"
},
"devDependencies": {
"@types/node": "^22.7.4",
"concurrently": "^9.0.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@ethereumjs/common": "link:../ethereumjs-monorepo/packages/common",
"@ethereumjs/tx": "link:../ethereumjs-monorepo/packages/tx",
"@ethereumjs/util": "link:../ethereumjs-monorepo/packages/util",
"ethers": "^6.13.3",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"tslib": "^2.7.0"
}
}