-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (44 loc) · 991 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "sg_transportation_app",
"version": "1.0.0",
"description": "A realtime application to monitor Bus ETAs via LTA's API. Uses Redis, Node.js and Socket.IO.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"engines": {
"node": "16.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/incubated-geek-cc/sg-transportation.git",
"directory": "sg-transportation"
},
"keywords": [
"geospatial",
"api",
"redis",
"proxy",
"realtime",
"socketio"
],
"author": "geek_cc",
"license": "ISC",
"dependencies": {
"path": "^0.12.7",
"serve-favicon": "^2.5.0",
"consolidate": "^0.16.0",
"mustache": "^4.0.1",
"openurl": "^1.1.1",
"request": "^2.88.2",
"compression": "^1.7.4",
"express": "^4.17.1",
"redis": "^3.1.2",
"socket.io": "^4.1.3",
"dotenv": "^10.0.0"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}