-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 985 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 985 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
36
37
{
"name": "upsignalslacknotify",
"version": "1.0.0",
"description": "UpSignal-SlackNotify",
"main": "src/index.js",
"scripts": {
"start-dev": "babel-node ./src/app.js --out-dir dist",
"start": "node ./dist/app.js",
"build": "babel src --out-dir dist",
"dev": "nodemon --exec babel-node src/app.js"
},
"author": {
"name": "Batuhan SEVGIL"
},
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.16.11",
"@slack/web-api": "^6.8.1",
"axios": "^1.4.0",
"cron": "^2.3.1",
"dotenv": "^16.3.1",
"nodemon": "^2.0.15"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.5.5",
"babel-cli": "^7.0.0-beta.3",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2"
}
}