-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "gpt-programmer",
"version": "1.0.0",
"repository": "[email protected]:tomek7667/gpt-programmer.git",
"author": "tomek7667 <[email protected]>",
"license": "MIT",
"engines": {
"node": "21.7.1"
},
"scripts": {
"clean": "rimraf dist/",
"clean:sandbox": "node clean.js",
"cf": "copyfiles -u 1 src/domain/contexts/* dist/",
"build:watch": "yarn cf && tsc -w",
"start:watch": "nodemon dist/main.js",
"start": "yarn clean:sandbox && yarn clean && yarn cf && tsc && node dist/main.js",
"test:regression": "yarn clean:sandbox && yarn clean && yarn cf && tsc && node dist/regression.js",
"docs": "typedoc --out docs src/index.ts && copyfiles CNAME docs/"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"copyfiles": "^2.4.1",
"nodemon": "^3.1.0",
"openai": "^4.29.2",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.1",
"typedoc": "^0.25.12",
"typescript": "^5.4.3",
"webpack": "^5.91.0"
},
"dependencies": {
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"express": "^4.19.1",
"google-sr": "^3.2.1",
"yaml": "^2.4.1",
"zod": "^3.22.4"
}
}