-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.1 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
{
"name": "darwin-web-proxy",
"version": "0.0.1",
"description": "A JSON proxy for National Rail's SOAP API for client-side web apps, providing support for CORS and HTTPS.",
"main": "index.js",
"scripts": {
"babel-node": "babel-node --presets=latest",
"start": "NODE_ENV=development nodemon --exec npm run babel-node -- ./index.js",
"start:prod": "NODE_ENV=production nodemon --exec npm run babel-node -- ./index.js",
"test": "./node_modules/.bin/eslint .",
"precommit": "yarn test"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"helmet": "^3.12.0",
"morgan": "^1.9.0",
"national-rail-darwin": "^1.0.6",
"rotating-file-stream": "^1.3.5",
"uuid-regexp": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.19.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"husky": "^0.14.3",
"nodemon": "^1.17.2"
}
}