-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
46
{
"name": "chatgpt-code-plugin",
"version": "0.0.1",
"scripts": {
"start": "cd $INIT_CWD/dist && node index.js",
"start:logs": "cd $INIT_CWD/dist && { node index.js & } && tail -F combined.log error.log",
"lint": "eslint $INIT_CWD/src",
"test": "cd $INIT_CWD ; jest --coverage",
"build": "npm run clean && npm run compile && cp -r src/*.yaml src/public dist/",
"compile": "tsc -b $INIT_CWD -v --listEmittedFiles",
"clean": "rm -rf $INIT_CWD/dist"
},
"license": "SEE LICENSE IN 'LICENSE'",
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/connect-timeout": "^0.0.37",
"@types/cors": "^2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/morgan": "^1",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": ">=3.3.1 <5.2.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/**/*.spec.ts"
]
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^5.60.0",
"compression": "^1.7.4",
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"fuzzy": "^0.1.3",
"ignore": "^5.2.4",
"morgan": "^1.10.0",
"winston": "^3.9.0"
}
}