-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.64 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sadbot",
"version": "0.0.1",
"description": "Interactive sad facebook chat bot",
"main": "echo.js",
"scripts": {
"lint": "eslint",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node ./src/main.ts",
"start": "nodemon",
"tsc": "tsc"
},
"dependencies": {
"@types/node": "^12.0.0",
"aesthetics": "^2.0.8",
"body-parser": "^1.19.0",
"color": "^0.11.3",
"config": "^1.2.10",
"cowsay": "^1.1.8",
"emoji-regex": "^6.0.0",
"emojilib": "^2.0.2",
"figlet": "^1.1.2",
"firebase": "^3.2.0",
"forecast": "^0.3.2",
"libfb": "^1.4.11",
"moment": "^2.14.1",
"moment-timezone": "^0.5.25",
"node-geocoder": "^3.22.0",
"nodemon": "^1.9.2",
"pokedex-promise-v2": "^3.0.1",
"request": "^2.88.0",
"superagent": "^5.0.5",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"prettier": "^1.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UsmannK/sadbot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UsmannK/sadbot/issues"
},
"homepage": "https://github.com/UsmannK/sadbot#readme",
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm run dev",
"ext": "ts"
}
}