-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
38
39
40
41
42
43
44
45
{
"name": "promptflow",
"version": "1.0.0",
"description": "A GenAI London Hackathon Project",
"main": "src/bin/main.ts",
"scripts": {
"test": "jest"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nyacg/PromptFlow.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nyacg/PromptFlow/issues"
},
"homepage": "https://github.com/nyacg/PromptFlow#readme",
"dependencies": {
"@types/handlebars": "^4.1.0",
"axios": "^1.3.6",
"dotenv": "^16.0.3",
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"openai": "^3.2.1",
"prettier": "^2.8.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/handlebars": "^4.1.0",
"@types/lodash": "^4.14.194",
"@types/node": "^18.15.13",
"@types/uuid": "^9.0.1",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
},
"workspaces": [
"src",
"frontend",
"pf-frontend"
]
}