-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "animeverse",
"version": "1.0.0",
"description": "Discord bot for anime enthusiasts",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"build": "tsc && tsc-watch --onSuccess \"npm run build:prod\"",
"build:prod": "tsc && tsc-watch --onSuccess \"npm run build:prod:copy\"",
"build:prod:copy": "tsc && tsc-watch --onSuccess \"cp dist/src/.js dist\"",
"lint": "eslint src//.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/animeverse.git"
},
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@discordjs/voice": "^0.12.1",
"@google-cloud/vision": "^5.0.1",
"axios": "^1.4.0",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jikanjs": "^4.1.0",
"myanimelist": "^2.4.0",
"mongoose": "^7.0.1",
"openai": "^4.10.1",
"redis": "^4.6.7",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/axios": "^1.1.5",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.5.6",
"@types/redis": "^4.2.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript-eslint-parser": "^3.0.0",
"tsc-watch": "^5.0.3",
"vue": "^3.3.4",
"vue-router": "^4.2.5",
"vuex": "^4.1.0"
}
}