-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 963 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 963 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
38
39
{
"name": "nodejs-showcase",
"version": "0.0.1",
"description": "An app that gathers pois from different sources",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node index.js",
"develop": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smanousopoulos/nodejs-showcase.git"
},
"keywords": [
"node",
"events"
],
"author": "Stelios Manousopoulos",
"license": "MIT",
"bugs": {
"url": "https://github.com/smanousopoulos/nodejs-showcase/issues"
},
"homepage": "https://github.com/smanousopoulos/nodejs-showcase#readme",
"devDependencies": {
"babel-jest": "^21.0.2",
"jest": "^21.1.0"
},
"dependencies": {
"express": "^4.15.4",
"isomorphic-fetch": "^2.2.1",
"merge-stream": "^1.0.1",
"mongodb": "^2.2.31",
"mustache-express": "^1.2.5",
"socket.io": "^2.0.3",
"socket.io-stream": "^0.9.1",
"wikijs": "^4.2.1"
}
}