-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 843 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 843 Bytes
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
{
"name": "friday",
"description": "A.I 에게 R&R을 부여해서 프로그래밍 업무를 진행시킵니다.",
"private": true,
"version": "0.0.1",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsc && node -r dotenv/config dist/dev.js",
"architect": "tsc && node -r dotenv/config dist/architect.js",
"evangelist": "tsc && node -r dotenv/config dist/evangelist.js",
"programmer": "tsc && node -r dotenv/config dist/programmer.js",
"reviewer": "tsc && node -r dotenv/config dist/reviewer.js"
},
"devDependencies": {
"@types/node": "^18.15.11",
"chalk": "^5.2.0",
"dotenv": "^16.0.3",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.3.4",
"axios-retry": "^3.4.0",
"microsoft-cognitiveservices-speech-sdk": "^1.27.0",
"sound-play": "^1.1.0"
}
}