-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 816 Bytes
/
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
{
"name": "expressjs-demo-coding-patterns",
"version": "1.0.0",
"description": "A DEMO with Express.js showing implementation of a cache, database and graphql query handlers for a data repository using 3 coding patterns \n\n- chain-of-responsibility pattern\n- decorator pattern\n- repository pattern",
"main": "app.js",
"private": true,
"scripts": {
"start": "nodemon app.js localhost 8080"
},
"dependencies": {
"aws4": "1.12.0",
"aws-sdk": "2.1617.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "8.2.0",
"express": "~4.16.1",
"got": "8.3.2",
"gotql": "1.0.0",
"knex": "0.21.1",
"morgan": "~1.9.1",
"pg": "8.10.0",
"quick-lru": "5.1.1",
"redis": "4.6.5"
},
"devDependencies": {
"nodemon": "1.18.4"
},
"keywords": []
}