-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.7 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.7 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "nodejs-stuff",
"version": "0.0.1",
"description": "Collection of nodejs code examples.",
"main": "",
"scripts": {
"test": "echo \"No test specified!\" && exit 1",
"mongodb": "node ./database/mongodb/index.js",
"mongoose": "node ./database/mongoose/index.js",
"redis": "node ./database/redis/index.js",
"httprequest": "node ./network/http/request/index.js",
"webserver": "node ./network/http/webserver/server.js",
"netServer": "node ./network/net/server.js",
"netClient": "node ./network/net/client.js",
"udpServer": "node ./network/udp/server.js",
"udpClient": "node ./network/udp/client.js",
"connect": "node ./webframeworks/connect/server.js",
"connectCompression": "node ./webframeworks/connect/server-compression.js",
"connectJson": "node ./webframeworks/connect/server-json-response.js",
"connectMorgan": "node ./webframeworks/connect/server-morgan.js",
"express": "node ./webframeworks/express/server.js",
"fastify": "node ./webframeworks/fastify/server.js",
"koa": "node ./webframeworks/koa/server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/DBProductions/nodejs-stuff.git"
},
"keywords": [
"nodejs",
"npm"
],
"author": "DBProductions",
"license": "ISC",
"bugs": {
"url": "https://github.com/DBProductions/nodejs-stuff/issues"
},
"homepage": "https://github.com/DBProductions/nodejs-stuff",
"dependencies": {
"amqp": "^0.2.7",
"amqp-connection-manager": "^3.2.0",
"amqplib": "^0.5.5",
"assert-plus": "1.0.0",
"aws4": "^1.9.1",
"bull": "^3.12.1",
"bunnybus": "^3.1.1",
"combined-stream": "^1.0.8",
"compression": "^1.7.4",
"connect": "^3.7.0",
"connect-mongo": "^3.2.0",
"connect-redis": "^4.0.3",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"delayed-stream": "1.0.0",
"ecdsa-sig-formatter": "^1.0.11",
"express": "^4.17.1",
"express-session": "^1.17.0",
"extend": "2.0.2",
"extsprintf": "1.4.0",
"fastify": "^2.11.0",
"findit": "2.0.0",
"isstream": "0.1.2",
"json-stringify-safe": "5.0.1",
"jsonwebtoken": "^8.5.1",
"kafka-node": "^5.0.0",
"kafka-streams": "^4.12.0",
"koa": "^2.11.0",
"koa-router": "^8.0.6",
"mongodb": "^3.5.2",
"mongoose": "^5.8.10",
"morgan": "^1.9.1",
"mysql": "^2.18.1",
"nats": "^1.4.0",
"neo4j": "2.0.0-RC2",
"node-amqp": "1.2.1",
"optimist": "0.6.1",
"pug": "^2.0.4",
"rabbit.js": "0.4.4",
"redis": "2.8.0",
"request": "^2.88.0",
"restify": "^8.5.1",
"socket.io": "^2.3.0",
"socketio-jwt": "4.5.0",
"sockjs": "0.3.19",
"stringstream": "^1.0.0",
"verror": "1.10.0",
"vision": "^5.4.4"
}
}