forked from NameThatSong/Orchestrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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": "whats-the-song",
"version": "1.0.0",
"description": "A bot that is all things music",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=dev ts-node-dev --trace-warnings --respawn --transpile-only ./src/index.ts",
"build": "tsc",
"start": "cross-env NODE_ENV=prod node ./build/index.js "
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/form-data": "^2.5.0",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
},
"dependencies": {
"@google-cloud/speech": "^4.9.0",
"@zenvia/sdk": "^2.2.0",
"axios": "^0.24.0",
"cheerio": "^1.0.0-rc.10",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"mongoose": "^6.1.3",
"uuid": "^8.3.2",
"winston": "^3.3.3"
}
}