-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.22 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": "SmashBot",
"version": "1.0.0",
"description": "Scrape the smash wiki",
"author": "Generated using Microsoft Bot Builder Yeoman generator v4.10.3",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node ./smash-bot/index.js",
"watch": "nodemon ./smash-bot/index.js",
"lint": "eslint . ",
"lint-fix": "eslint . --fix",
"test": "npx mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"botbuilder": "~4.10.3",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"csv-parser": "^2.3.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mocha": "^8.2.1",
"request": "^2.88.2",
"restify": "~8.5.1",
"server": "^1.0.31"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "~2.0.4"
}
}