-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 878 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 878 Bytes
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
{
"name": "chatbot-bot",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc",
"dev": "bottender dev",
"lint": "eslint . --ext=js,ts",
"start": "bottender start",
"test": "jest"
},
"dependencies": {
"@types/json-query": "^2.2.0",
"axios": "^0.21.1",
"bottender": "^1.4.0",
"csv-parse": "^4.8.5",
"json-query": "^2.2.2",
"prettier": "1.19.1",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"postinstall": "npm run tsc"
}