forked from Evobaso-J/ai-gitlab-code-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.87 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.87 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
{
"type": "module",
"name": "openai-gitlab-pr-review",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "pnpm build:ts && tsc -p test/tsconfig.json && FASTIFY_AUTOLOAD_TYPESCRIPT=1 node --test --experimental-test-coverage --loader ts-node/esm test/**/*.ts",
"start": "pnpm build:ts && fastify start -l info dist/app.js",
"docker:start": "fastify start -l info -P dist/app.js",
"lint": "ts-standard --fix",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"dev": "pnpm build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"pnpm:watch:ts\" \"pnpm:dev:start\"",
"dev:start": "fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js",
"promptfoo": "npx promptfoo@latest",
"test:prompt": "node --env-file=.env --loader ts-node/esm promptfoo/evalRunner.ts",
"view:promptfooResults": "pnpm promptfoo view -y",
"ngrok": "scripts/ngrok.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/env": "^4.3.0",
"@fastify/sensible": "^5.0.0",
"@gitbeaker/rest": "^40.1.2",
"fastify": "^4.26.1",
"fastify-cli": "^6.1.1",
"fastify-plugin": "^4.0.0",
"fluent-json-schema": "^4.2.1",
"openai": "^4.47.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.4.4",
"c8": "^9.0.0",
"concurrently": "^8.2.2",
"fastify-tsconfig": "^2.0.0",
"husky": "^9.0.11",
"ngrok": "5.0.0-beta.2",
"promptfoo": "^0.70.1",
"ts-node": "^10.4.0",
"ts-standard": "^12.0.2",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.15.4+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2"
}