-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 2.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
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
{
"name": "beefy-clm-api",
"version": "1.0.0",
"license": "gpl-3.0",
"private": true,
"engines": {
"node": "^20.10.0"
},
"scripts": {
"prepare": "husky",
"build": "tsc",
"start": "node build/index.js",
"inspect": "node --inspect build/index.js",
"deploy": "git checkout prod && git rebase main && git push && git checkout -",
"dev": "ts-node-dev --respawn --require=dotenv/config src/index.ts",
"format": "biome check",
"format:fix": "biome check --write",
"format:fix:unsafe": "biome check --write --unsafe",
"test": "npm run test:ts && npm run test:unit && npm run test:lint",
"test:unit": "jest",
"test:ts": "tsc --noEmit",
"test:lint": "biome ci",
"package:check": "ncu",
"package:fix": "ncu -u && npm install",
"postinstall": "npm --silent run codegen",
"codegen": "graphql-codegen --config ./src/queries/codegen/codegen.ts",
"lint-staged": "lint-staged"
},
"dependencies": {
"@fastify/caching": "^8.3.0",
"@fastify/cors": "^9.0.1",
"@fastify/etag": "^5.1.0",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/swagger-ui": "^3.0.0",
"@fastify/swagger": "^8.14.0",
"@fastify/under-pressure": "^8.3.0",
"@sinclair/typebox": "^0.32.33",
"@types/lodash-es": "^4.17.12",
"async-lock": "^1.4.1",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"graphql": "^16.6.0",
"lodash": "^4.17.21",
"node-cache": "^5.1.2",
"pino": "^8.19.0"
},
"lint-staged": {
"src/**/*.{ts,graphql,json}": "biome check --write"
},
"devDependencies": {
"@biomejs/biome": "1.8.2",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@graphql-codegen/typescript": "^4.0.7",
"@jest/globals": "^29.7.0",
"@types/async-lock": "^1.4.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"npm-check-updates": "^16.14.18",
"pino-pretty": "^11.0.0",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}