forked from TrueStarHQ/api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.4 KB
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
{
"name": "@truestar/review-checker",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"license": "Elastic-2.0",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"check": "tsc --noEmit -p test/tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run",
"codegen": "orval --config orval.config.cjs",
"postinstall": "yarn codegen",
"prepare": "husky"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"dotenv": "^16.5.0",
"fastify": "^5.1.0",
"openai": "^4.77.3",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"orval": "^7.10.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "~5.8.3",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "yarn@4.9.2"
}