-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
41 lines (41 loc) · 1.03 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
{
"engines": {
"node": "8.9.4"
},
"name": "ecommerce-chatbot",
"version": "2.0.0",
"description": "e-commerce chatbot with product recommendations",
"main": "app.js",
"scripts": {
"precommit": "npm run lint",
"lint": "node node_modules/eslint/bin/eslint ./ --fix -f table || true"
},
"dependencies": {
"@moltin/sdk": "^3.3.0",
"botbuilder": "^3.14.0",
"express": "^4.16.2",
"lodash": "^4.17.4",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.10.2"
},
"keywords": [
"ecommerce",
"chatbot",
"recommendations"
],
"author": "Pavel Veller",
"license": "MIT"
}