-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 871 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 871 Bytes
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
{
"name": "chatgpt-node-server",
"version": "1.0.0",
"description": "A playground testing the capabilities with chatgpt",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/index",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+"
},
"keywords": [
"chatgpt"
],
"author": "Ørjan Skårnes",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/node": "^18.11.12",
"typescript": "^4.9.4"
},
"dependencies": {
"@tsconfig/node18": "^1.0.1",
"body-parser": "^1.20.1",
"chatgpt": "^3.3.1",
"cors": "^2.4.2",
"express": "^4.18.2",
"mongodb": "^4.12.1",
"puppeteer": "^19.4.0",
"react-markdown": "^8.0.4",
"require": "^2.4.20"
}
}