-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
47
48
49
50
51
52
53
54
55
{
"name": "t3_be",
"version": "0.0.1",
"description": "backend for team 3 service",
"exports": "./index.js",
"type": "module",
"scripts": {
"start": "concurrently \"npx tsc -w\" \"tsc-alias -w\" \"nodemon ./dist/index.js\"",
"test": "echo \"not implemented!\" && exit 1",
"build": "tsc && tsc-alias",
"clean": "rm -rf dist/",
"prod": "cross-env NODE_ENV=production TZ=Asia/Seoul node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HACKY-TALKY-2/T3_BE.git"
},
"keywords": [
"ai",
"excuse"
],
"author": "team 3 from hacky talky hackathon",
"license": "MIT",
"bugs": {
"url": "https://github.com/HACKY-TALKY-2/T3_BE/issues"
},
"homepage": "https://github.com/HACKY-TALKY-2/T3_BE#readme",
"engines": {
"node": ">=18.0.0",
"pnpm": "^8.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.445.0",
"@types/swagger-jsdoc": "^6.0.3",
"@types/swagger-ui-express": "^4.1.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"mongoose": "^8.0.0",
"openai": "^4.17.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/node": "^20.9.0",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.2.2"
}
}