-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "discord-soundboard-bot",
"version": "1.0.0",
"description": "Discord bot to record and play fun sounds",
"main": "src/server/index.js",
"scripts": {
"build": "webpack --mode production",
"start": "npm run build && node src/server/index.js",
"debug": "npm run build && node src/server/index.js",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "node src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"docker-build": "docker build . -t soundboard",
"docker-run": "docker compose up"
},
"author": "ya boi",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"@reduxjs/toolkit": "^1.9.7",
"compression": "^1.7.4",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"duplex-child-process": "^1.0.1",
"express": "^4.18.2",
"ffmpeg-static": "^5.2.0",
"libsodium-wrappers": "^0.7.13",
"moment": "^2.29.4",
"node-crc": "1.3.2",
"node-gyp": "^9.4.0",
"pino": "^8.15.6",
"pino-http": "^8.5.0",
"pino-pretty": "^10.2.3",
"prism-media": "2.0.0-alpha.0",
"react": "^18.2.0",
"react-compound-slider": "^3.4.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.16.0",
"react-use-cookie": "^1.4.0",
"redux": "^4.2.1",
"semantic-ui-react": "^2.1.4",
"sequelize": "^6.33.0",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1",
"vosk": "^0.3.39"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.1",
"css-loader": "^6.8.1",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"resolutions": {
"node-gyp": "^9.4.0"
}
}