-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 KB
/
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
{
"name": "xrates",
"version": "1.0.0",
"description": "API for currency conversion",
"main": "index.js",
"scripts": {
"start": "SET NODE_ENV=default&& node dist/app",
"clean": "rm -rf dist/",
"build": "npm run clean && babel src -d dist",
"eslint": "export src/",
"test": "npm run build && babel test -d dist/test && SET NODE_ENV=test&& mocha --bail dist/test",
"startDev": "SET NODE_ENV=dev&& node dist/app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adriansangil/xrates.git"
},
"author": "Adrian Sangil",
"license": "ISC",
"bugs": {
"url": "https://github.com/adriansangil/xrates/issues"
},
"homepage": "https://github.com/adriansangil/xrates#readme",
"dependencies": {
"config": "^1.25.1",
"koa": "^2.0.0",
"koa-bodyparser": "^3.2.0",
"koa-cors": "0.0.16",
"koa-rest-cache": "^1.1.0",
"koa-router": "^7.0.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"money": "^0.2.0",
"mongoose": "^4.8.3"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.1.8",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.16.0",
"mocha": "^3.2.0"
}
}