forked from nicolrx/chucknorris-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "chuckmorris-bot",
"version": "1.0.0",
"description": "A bot giving you fun facts about Chuck Norris",
"main": "server.js",
"scripts": {
"start": "nodemon --exec babel-node -- src/server.js",
"prod": "node lib/server.js",
"lint": "eslint src/",
"build": "babel src -d lib"
},
"author": "Recast",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:RecastAI/chucknorris-bot.git"
},
"dependencies": {
"babel-polyfill": "^6.22.0",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"recastai": "^3.1.1",
"request": "^2.81.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.11.5",
"eslint": "^3.2.0",
"eslint-config-zavatta": "^4.2.0",
"eslint-plugin-import": "^1.6.1",
"nodemon": "^1.11.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"eslintConfig": {
"extends": "zavatta",
"rules": {
"no-console": 0,
"callback-return": 0
}
}
}