-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 807 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 807 Bytes
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
{
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@types/jsonwebtoken": "^9.0.9",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"hardhat": "^2.24.0",
"prisma": "^6.7.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@prisma/client": "^6.7.0",
"dotenv": "^16.5.0",
"ethers": "^6.14.0",
"jsonwebtoken": "^9.0.2",
"koa": "^3.0.0",
"koa-bodyparser": "^4.4.1",
"koa-router": "^13.0.1",
"ts-node": "^10.9.2"
},
"scripts": {
"dev": "ts-node --esm --transpile-only server.ts",
"build": "tsc --build",
"migrate": "prisma migrate dev",
"generate": "prisma generate",
"format": "prettier --write .",
"lint": "eslint . --ext .ts"
}
}