-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 814 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 814 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
29
30
{
"name": "rung-microservice",
"version": "0.0.1",
"description": "Microservice boilerplate for Rung projects",
"main": "dist/index.js",
"author": "Paulo Henrique Cuchi <paulo.cuchi@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"test": "NODE_ENV=test mocha --require babel-register ./test --exit",
"lint": "eslint . --cache",
"build": "babel ./src -d ./dist --source-maps --copy-files",
"start": "node dist",
"dev": "yarn build && yarn start"
},
"dependencies": {
"bluebird": "^3.5.1",
"grpc": "^1.8.0",
"nact": "^4.3.0",
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-rung": "1.1.2",
"chai": "^4.1.2",
"eslint": "^4.14.0",
"eslint-config-rung": "^2.1.0",
"mocha": "^4.1.0"
}
}