-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "spell_it",
"version": "1.0.0",
"description": "Spell it game for Discord",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prestart": "node src/commands/_setup_commands.js",
"start": "env-cmd -f ./.env.production.local node src/app.js",
"no-env-cmd-start": "npm run prestart && node src/app.js",
"dev": "env-cmd -f ./.env nodemon src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SBTopZZZ-LG/discord_spellit.git"
},
"keywords": [
"spell-it",
"spellit",
"spell",
"it",
"discord",
"bot"
],
"author": "SBTopZZZ-LG",
"license": "ISC",
"bugs": {
"url": "https://github.com/SBTopZZZ-LG/discord_spellit/issues"
},
"homepage": "https://github.com/SBTopZZZ-LG/discord_spellit#readme",
"devDependencies": {
"nodemon": "^3.0.1"
},
"dependencies": {
"cors": "^2.8.5",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"env-cmd": "^10.1.0",
"express": "^4.18.2",
"mongoose": "^7.5.4",
"node-gtts": "github:SBTopZZZ-LG/node-gtts-no-log"
}
}