-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "api-proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "6.10.0"
},
"dependencies": {
"babel-cli": "^6.22.2",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"bluebird": "^3.4.7",
"express": "^4.14.1",
"http-proxy-middleware": "^0.17.4",
"nconf": "^0.8.4"
},
"scripts": {
"dev": "nodemon lib/index.js --exec babel-node",
"build": "./node_modules/.bin/babel lib --out-dir dist --ignore node_modules,Dockerfile,**/*.log,**/*.md --copy-files",
"start": "node dist/index.js",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrmusa/api-proxy.git"
},
"author": "",
"license": "Private",
"bugs": {
"url": "https://github.com/mrmusa/api-proxy/issues"
},
"homepage": "https://github.com/mrmusa/api-proxy#readme",
"devDependencies": {
"nodemon": "^1.11.0"
}
}