-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "node-js-getting-started",
"version": "0.3.0",
"description": "A sample Node.js app using Express 4",
"engines": {
"node": "14.x"
},
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "node test.js"
},
"dependencies": {
"@slack/web-api": "^6.1.0",
"axios-oauth-client": "^1.4.1",
"body-parser": "^1.19.0",
"connect-ensure-login": "^0.1.1",
"connect-session-sequelize": "^7.1.1",
"cookie-parser": "^1.4.5",
"dayjs": "^1.10.4",
"dotenv": "^9.0.1",
"ejs": "^3.1.6",
"express": "^4.15.2",
"express-session": "^1.17.1",
"express-session-sequelize": "^2.3.0",
"helmet": "^4.6.0",
"mariadb": "^2.5.3",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-42": "^1.2.6",
"sequelize": "^6.6.2",
"session-file-store": "^1.5.0",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"got": "^11.3.0",
"jest": "^26.6.3",
"tape": "^4.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT"
}