-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "tadeusz",
"version": "1.0.0",
"main": "dist/main.js",
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.json",
"build:image": "docker build -t tadeusz .",
"start": "yarn build && node dist/main.js",
"start:dev": "tsc-watch --project tsconfig.json --onSuccess 'node dist/main.js'",
"start:container": "docker container run --env-file=.env tadeusz main.js",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"@discordjs/voice": "^0.7.5",
"axios": "^0.24.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"discord-api-types": "^0.24.0",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"ffmpeg-static": "^4.4.0",
"mongoose": "^6.2.0",
"node-emoji": "^1.11.0",
"tweetnacl": "^1.0.3",
"winston": "^3.3.3",
"ytdl-core-discord": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/ramda": "^0.27.46",
"babel-jest": "^27.4.2",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4"
}
}