forked from TanguyChiffoleau/Le-bot-en-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 900 Bytes
/
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
{
"name": "le-bot-en-js",
"version": "0.0.1",
"description": "Le bot discord en JS.",
"main": "src/index.js",
"scripts": {
"start": "node .",
"test": "eslint src && prettier --check src/**/*.js",
"docker-start": "docker-compose -f ./docker/docker-compose.yml up -d --build",
"docker-stop": "docker-compose -f ./docker/docker-compose.yml down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TanguyChiffoleau/Le-bot-en-JS.git"
},
"author": "Tanguy Chiffoleau",
"license": "MIT License",
"bugs": {
"url": "https://github.com/TanguyChiffoleau/Le-bot-en-JS/issues"
},
"homepage": "https://github.com/TanguyChiffoleau/Le-bot-en-JS#readme",
"dependencies": {
"discord.js": "^12.4.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2"
}
}