-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "blobfusion",
"version": "1.2.0",
"description": "Make blobspace more affordable for everyone by combining tiny blobs that don't fill a full EIP-4844 blob into one",
"repository": "ephema/blobfusion",
"author": "Marc Nitzsche",
"main": "index.ts",
"scripts": {
"dev": "NODE_ENV=development tsx watch --clear-screen=false src/index.ts | pino-pretty",
"predev": "rimraf pino.log",
"build": "rimraf dist && tsup",
"start": "node dist/index.js",
"clean": "rimraf dist coverage",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --config .prettierrc --write .",
"test": "vitest run",
"test:dev": "vitest dev",
"test:cov": "vitest run --coverage",
"prepare": "husky",
"release": "release-it",
"test:hardhat": "npm run build:hardhat && hardhat test",
"build:hardhat": "hardhat compile",
"deploy-hardhat": "npx hardhat ignition deploy ./src/ethereum/ignition/modules/BlobFusion.ts --network localhost",
"hardhat-network": "npx hardhat node",
"deploy-local-contract": "npx hardhat ignition deploy ./src/ethereum/ignition/modules/BlobFusion.ts --network localhost"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.0.0",
"@ladjs/graceful": "^3.2.2",
"@openzeppelin/contracts": "^5.0.2",
"@prisma/client": "^5.13.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"kzg-wasm": "^0.4.0",
"pino-http": "^9.0.0",
"stale-while-revalidate-cache": "^3.4.0",
"swagger-ui-express": "^5.0.0",
"toad-scheduler": "^3.0.1",
"viem": "^2.9.29",
"zod": "^3.23.5"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitest/coverage-v8": "^1.5.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"hardhat": "^2.22.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"pino-pretty": "^11.0.0",
"prettier": "^3.2.5",
"prisma": "^5.13.0",
"release-it": "^17.2.1",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"tsup": "^8.0.2",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.3"
},
"overrides": {
"hardhat": {
"typescript": "$typescript"
},
"@nomicfoundation/hardhat-toolbox-viem": {
"typescript": "$typescript"
}
},
"lint-staged": {
"**/*": "npm run format",
"**/*.{js,ts}": "npm run lint:fix"
}
}