-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
{
"name": "nodejs-slackbot",
"version": "1.0.0",
"description": "## Workshop",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --inspect app.js",
"dev:client": "NODE_ENV=development webpack --watch",
"build": "webpack --mode production",
"start": "node app.js",
"reminder": "node scripts/incompleteSurveyReminder.js",
"alerts:tbw2021": "node scripts/tbw2021Alerts.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hectorbenitez/nodejs-slackbot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hectorbenitez/nodejs-slackbot/issues"
},
"homepage": "https://github.com/hectorbenitez/nodejs-slackbot#readme",
"dependencies": {
"@slack/bolt": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"json2csv": "^5.0.6",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^5.13.15",
"mongoose-seed": "^0.6.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@neutrinojs/react": "^9.5.0",
"axios": "^0.21.2",
"bootstrap": "^4.6.0",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.22.0",
"neutrino": "^9.5.0",
"nodemon": "^2.0.20",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-slack-login": "^1.1.7",
"reactstrap": "^8.9.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"engines":{
"node": "16.x"
}
}