-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1003 Bytes
/
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
38
39
40
41
{
"name": "pwabuilder-gpt-poc",
"version": "0.0.1",
"description": "This prototype explores possibilities and horizons of using LLM like ChatGPT in PWA development.",
"main": "dist/api.js",
"type": "module",
"scripts": {
"build": "npx tsc && npx vite build",
"start": "node dist/api.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/api.js\""
},
"keywords": [
"pwa",
"chatbot",
"gpt",
"llm",
"pwabuilder"
],
"author": "khmyznikov",
"license": "MIT",
"dependencies": {
"chatgpt": "^3.5.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"jsdom": "^21.1.0",
"lit": "^2.6.1",
"node-fetch": "^3.3.0",
"openai": "^3.1.0",
"puppeteer": "^19.5.2",
"vite": "^4.0.4"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jsdom": "^21.1.0",
"@types/node": "^18.11.18",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
}
}