-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "beefy-investor-api",
"version": "1.0.0",
"license": "gpl-3.0",
"private": true,
"engines": {
"node": "^20.10.0"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/etag": "^5.1.0",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@fastify/under-pressure": "^8.3.0",
"@types/lodash-es": "^4.17.12",
"axios": "^1.6.8",
"date-fns": "^3.6.0",
"fastify": "^4.26.2",
"fluent-json-schema": "^4.2.1",
"lodash": "^4.17.21",
"pino": "^8.19.0",
"pino-pretty": "^11.0.0",
"viem": "^2.9.3"
},
"scripts": {
"prepare": "husky",
"build": "tsc",
"start": "node build/index.js",
"dev:start": "ts-node --require=dotenv/config src/index.ts",
"prettier:check": "prettier --check src/**/*.{ts,tsx,json}",
"prettier:fix": "prettier --write src/**/*.{ts,tsx,json}",
"package:check": "ncu",
"package:fix": "ncu -u && npm install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"src/**/*.{ts,tsx,json}": "prettier --write"
},
"devDependencies": {
"@types/node": "^20.11.30",
"dotenv": "^16.4.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.18",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}