-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "srv-cli",
"version": "0.4.1",
"description": "A modern, opinionated and simple microservices stack built on Express.",
"main": "index.js",
"ava": {
"babel": true,
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"bin": {
"srv": "build/srv"
},
"files": [
"build"
],
"scripts": {
"gulp": "gulp",
"prepare": "npm run gulp",
"test": "gulp && nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alfg/srv.git"
},
"keywords": [
"node",
"microservices",
"express"
],
"author": "Alfred Gutierrez",
"license": "MIT",
"bugs": {
"url": "https://github.com/alfg/srv/issues"
},
"homepage": "https://github.com/alfg/srv",
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"@babel/runtime": "^7.10.4",
"apidoc": "^0.23.0",
"babel-plugin-module-resolver": "^4.0.0",
"chalk": "^4.1.0",
"commander": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"update-notifier": "^4.1.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"ava": "^3.10.1",
"babel-eslint": "^9.0.0",
"coveralls": "^3.0.0",
"del": "^5.1.0",
"eslint-config-airbnb": "17.0.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.7.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cached": "^1.1.1",
"gulp-eslint": "^6.0.0",
"gulp-ext": "^1.0.0",
"gulp-task-listing": "^1.1.0",
"nyc": "^15.1.0",
"request-promise": "^4.2.5"
}
}