-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "latie",
"version": "3.1.0",
"description": "Latie Discord Bot",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint ./src --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch src/**/*.ts --exec npx ts-node src/index.ts",
"prod": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZTzTopia/LatieDiscordBot.git"
},
"author": "ZTzTopia",
"license": "GPL 3.0",
"bugs": {
"url": "https://github.com/ZTzTopia/LatieDiscordBot/issues"
},
"homepage": "https://github.com/ZTzTopia/LatieDiscordBot",
"dependencies": {
"@discordjs/rest": "^0.4.1",
"@types/dotenv": "^8.2.0",
"axios": "^0.25.0",
"discord-api-types": "^0.32.1",
"discord.js": "^14.1.1",
"fs": "0.0.1-security",
"mongoose": "^6.0.0-rc2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.27.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}