-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 901 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
28
29
30
31
32
33
34
35
36
{
"name": "quizer",
"version": "1.0.0",
"description": "A premium discord bot for hosting and managing quizes automatically and punctually",
"main": "main.js",
"scripts": {
"start": "node main.js",
"dev": "concurrently \"nodemon main.js\" \"cd public && yarn start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"ignore": [
"public/*"
]
},
"author": "CodeWithArif",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^0.3.0",
"axios": "^0.26.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"chalk": "4.1.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"discord-api-types": "^0.29.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"mongoose": "^6.2.7"
},
"devDependencies": {
"concurrently": "^7.0.0",
"nodemon": "^2.0.15"
}
}