-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 949 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 949 Bytes
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
{
"name": "raidbot",
"version": "1.0.0",
"description": "A discord bot for organising raids in Pokemon Go",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js",
"lint": "eslint --ext js,jsx,ts,tsx --max-warnings 0 -f codeframe --cache --color src",
"test": "jest",
"format": "npm run prettier -- --write",
"validate": "npm run lint && npm run prettier -- --list-different",
"prettier": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)\""
},
"author": "Alan Schapira",
"license": "ISC",
"dependencies": {
"discord.js": "^11.5.0",
"enmap": "^4.8.7",
"moment": "^2.24.0",
"mongoose": "^5.5.8"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.2",
"jest": "^24.8.0",
"nodemon": "^1.19.0",
"prettier": "^1.17.1"
}
}