-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.49 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
{
"name": "messengerforce-recast",
"version": "2.0.0",
"description": "Salesforce-powered messenger bot with Recast.AI",
"main": "index.js",
"scripts": {
"start": "node ./node_modules/babel-cli/bin/babel-node.js src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src/*"
},
"author": "Pierre-Edouard Lieb <pe@recast.ai> (https://recast.ai/)",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.5",
"body-parser": "^1.15.0",
"express": "^4.13.4",
"moment": "^2.13.0",
"nforce": "^1.4.1",
"numeral": "^1.5.3",
"recastai": "^3.1.1",
"request": "^2.71.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.11.5",
"babel-runtime": "^6.18.0",
"eslint-config-airbnb-base": "^2.0.0",
"eslint-plugin-import": "^1.6.1",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.9.0",
"eslint-config-airbnb-base": "^2.0.0",
"eslint-plugin-import": "^1.6.1",
"nodemon": "^1.11.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"no-console":0,
"semi": [
2,
"never"
]
}
}
}