-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "BirthdayBot",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "babel src -d build && cross-env NODE_ENV=production node build/index.js",
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node src/index.js",
"prettier": "prettier --write ."
},
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.11.5",
"ascii-table": "0.0.9",
"cheerio": "^1.0.0-rc.3",
"cross-env": "^7.0.2",
"discord.js": "^12.3.1",
"dotenv": "^8.2.0",
"moment": "^2.29.1",
"mongoose": "^5.10.7",
"node-cron": "^2.0.3",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.1.2"
}
}