-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "ktu",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "babel src -d dist --source-maps",
"serve": "node dist/index.js",
"start": "babel-node src/index.js",
"dev": "nodemon src/index.js --exec babel-node",
"test": "jest --runInBand --verbose",
"test-watch": "jest --verbose --watch",
"coverage": "jest --coverage --runInBand --verbose",
"eslint": "eslint src/**/*.js --ignore-pattern \"node_modules/\""
},
"author": "",
"dependencies": {
"@slack/web-api": "^5.0.1",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"cors": "^2.8.4",
"dayjs": "^1.7.5",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"firebase-admin": "^7.3.0",
"node-cron": "^2.0.3",
"redis": "^2.8.0",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-node8": "^1.2.0",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.5.0",
"jest-cli": "^23.5.0",
"nodemon": "^1.18.4"
}
}