-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "apy-server",
"version": "1.0.1",
"description": "Gearbox SDK",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "node esbuild.config.mjs",
"docker": "npx ts-node ./build.mjs",
"dev": "npx ts-node main.ts",
"prepare": "husky",
"prettier": "prettier --write .",
"prettier:ci": "npx prettier --check .",
"lint": "eslint \"**/*.ts\" --fix",
"lint:ci": "eslint \"**/*.ts\"",
"typecheck:ci": "tsc --noEmit"
},
"dependencies": {
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"moment": "^2.30.1",
"viem": "^2.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@gearbox-protocol/eslint-config": "^2.0.0-next.2",
"@gearbox-protocol/prettier-config": "^2.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"esbuild": "^0.24.0",
"esbuild-plugin-tsc": "^0.4.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"prettier": "@gearbox-protocol/prettier-config",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": "prettier --write"
}
}