-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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": "discord-study-bot-expansion",
"version": "1.0.0",
"description": "A Discord bot designed to enhance student learning experiences with flashcards, streaks, leaderboards, and more.",
"main": "src/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext .js,.vue,.ts",
"format": "prettier --write src//.{js,vue,ts} --config .prettierrc.js",
"test": "jest",
"start": "node src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coslynx/discord-study-bot-expansion.git"
},
"author": "Author Name",
"license": "MIT",
"dependencies": {
"axios": "^1.3.4",
"bootstrap-vue": "^2.24.0",
"discord.js": "^14.8.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^6.8.3",
"nodemon": "^2.0.20",
"vue": "^3.3.4",
"vuex": "^4.1.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.8",
"@vitejs/plugin-vue": "^4.2.0",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.4",
"prettier": "^3.0.0",
"typescript": "^4.9.5",
"vite": "^4.4.5"
}
}