-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 831 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
{
"name": "livetrainsapi",
"version": "1.0.0",
"description": "An API wrapper for Network Rail, National Rail and other related APIs",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"production": "echo \"Running in Production Mode\" && node index.js",
"start": "echo \"Running in Production Mode\" && node index.js",
"test": "echo \"Running with additional test information\" && nodemon index.js --test",
"debug": "echo \"Running in Debug Mode\" && node --inspect index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.3",
"dotenv": "^16.3.1",
"ejs": "^3.1.10",
"express": "^4.21.2",
"helmet": "^7.0.0",
"morgan": "^1.10.1",
"national-rail-darwin": "^1.0.8",
"nodemon": "^3.0.1",
"soap": "^1.0.1"
}
}