-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 784 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
31
{
"name": "etherfi-api",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --exec ts-node server.ts",
"start": "node dist/server.js",
"prettier-format": "prettier --config .prettierrc './**/*.ts' --write",
"prettier-check": "prettier --config .prettierrc './**/*.ts' --check",
"lint-fix": "eslint --fix",
"lint-check": "eslint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"viem": "^2.19.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"eslint": "^9.9.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
}
}