-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 790 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 790 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
{
"name": "sampleBot",
"version": "1.0.0",
"description": "Sample Bot",
"main": "index.js",
"repository": "git@github.com:Danielshow/sample_bot.git",
"author": "danielshow <danielshotonwa53@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && babel ./src --out-dir dist/ --ignore ./node_modules",
"start": "yarn build && node ./dist/index.js",
"start:dev": "nodemon --exec babel-node src/index.js",
"test": "jest"
},
"dependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"node-schedule": "^1.3.2",
"twit": "^2.2.11"
},
"devDependencies": {
"jest": "^24.9.0",
"nodemon": "^1.19.3"
}
}