-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "debate-game",
"version": "1.0.0",
"description": "ChatGPT plugin enabling a debate game where users compete to persuade the LLM",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "npx tsc --outDir target/debug/ && node target/debug/index.js",
"start": "npx tsc --outDir target/release/ && node target/release/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boskeyacht/debate-game.git"
},
"author": "boskeyacht",
"license": "MIT",
"bugs": {
"url": "https://github.com/boskeyacht/debate-game/issues"
},
"homepage": "https://github.com/boskeyacht/debate-game#readme",
"dependencies": {
"@fastify/swagger": "^8.5.1",
"@prisma/client": "^4.15.0",
"dotenv": "^16.1.1",
"fastify": "^4.17.0",
"fastify-static": "^4.7.0",
"mixpanel": "^0.17.0",
"openai": "^3.3.0",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@types/uuid": "^9.0.1",
"prisma": "^4.15.0"
}
}