-
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) · 900 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 900 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": "wiseblend-api",
"version": "0.1.0",
"private": true,
"description": "",
"author": {
"name": "Valentin Podkamennyi",
"email": "vpodk@users.noreply.github.com",
"url": "https://vpodk.com/"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git@github.com:WiseBlend/API.git"
},
"bugs": {
"url": "https://github.com/WiseBlend/API/issues"
},
"scripts": {
"start": "NODE_ENV=production node src/index.js",
"dev": "NODE_ENV=development node src/index.js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"engines": {
"node": "20.x"
},
"main": "src/index.js",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.3",
"openai": "^4.26.1",
"puppeteer": "^22.0.0",
"redis": "^4.6.13"
}
}