-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "mong-kimm",
"version": "1.0.0",
"description": "haxball bot with database and discord control",
"main": "main.js",
"scripts": {
"start": "node main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"build": "npm run lint && npm run test && npm run transpile",
"transpile": "babel src -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/tanercanbilgin/mong-kimm.git"
},
"keywords": [
"haxballbot"
],
"author": "tanercanbilgin",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"haxball.js": "^2.1.2",
"mongoose": "^6.1.4"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^9.1.3"
}
}