-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "check-in-machine",
"version": "0.1.0",
"private": true,
"scripts": {
"reminder": "node ./cronjob/index.js",
"dev": "nodemon index.js",
"start": "node index.js",
"lint": "eslint \"./**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged",
"test": "npm run testonly",
"testonly": "jest",
"bottender:profile:set": "bottender messenger profile set"
},
"dependencies": {
"bottender": "^0.14.13",
"bottender-chatbase": "^0.2.1",
"config": "^1.29.0",
"cors": "^2.8.4",
"express-mongo-db": "^2.0.3",
"lodash": "^4.17.4",
"mongodb": "2.2.33",
"ramda": "^0.25.0"
},
"devDependencies": {
"bottender-context-simulator": "^0.0.1",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.4.0",
"husky": "^0.14.3",
"jest": "^22.0.5",
"lint-staged": "^6.0.0",
"ngrok": "^2.2.24",
"nodemon": "^1.12.5",
"prettier": "^1.9.2"
},
"engines": {
"node": ">= 7.6.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}