-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 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
{
"name": "AutomatedNotion",
"version": "1.0.0",
"description": "This is a sample application that demonstrates a simple workflow for using environment variables to access various APIs and services. The application is built using Node.js and TypeScript, and utilizes the Express framework for the web server.",
"main": "index.js",
"scripts": {
"build": "tsc --declaration --outDir dist/",
"start": "npm build && node -r dotenv/config dist/server.js",
"dev": "tsx -r dotenv/config src/server.ts"
},
"keywords": [],
"author": "FSN",
"license": "ISC",
"dependencies": {
"@langchain/community": "^0.0.34",
"@langchain/openai": "^0.0.15",
"@notionhq/client": "^2.2.14",
"@tsconfig/recommended": "^1.0.3",
"@types/node": "^20.11.24",
"axios": "^1.6.7",
"base64-js": "^1.5.1",
"cloudinary": "^2.0.3",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"google-tts-api": "^2.0.2",
"joi": "^17.12.2",
"langchain": "^0.1.25",
"mysql2": "^3.9.2",
"node-wav": "^0.0.2",
"nodemon": "^3.1.0",
"openai": "^4.28.4",
"rimraf": "^5.0.5",
"say": "^0.16.0",
"serpapi": "^2.0.0",
"stream": "^0.0.2",
"streamifier": "^0.1.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.1",
"typeorm": "^0.3.20",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/express": "^4.17.21",
"@types/streamifier": "^0.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}