-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.54 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
{
"author": "Thiemo Krause",
"name": "node-microservice-boilerplate",
"version": "0.1.3",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel src -d build --ignore __mocks__,__tests__",
"test": "node_modules/jest/bin/jest.js",
"start": "node index.js",
"lint": "node_modules/eslint/bin/eslint.js --cache --format=node_modules/eslint-formatter-pretty .",
"lint-fix": "npm run lint -- --fix",
"flow": "node_modules/flow-bin/cli.js",
"flow-typed": "rimraf flow-typed/npm && flow-typed install || true",
"postinstall": "[ \"$NODE_ENV\" == production ] && exit 0; npm run flow-typed"
},
"repository": {
"type": "git",
"url": "[email protected]:thiemok/node-microservice-boilerplate.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-plugin-flow-runtime": "^0.19.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-flowtype-errors": "^4.1.0",
"eslint-plugin-import": "^2.18.2",
"flow-bin": "^0.116.1",
"flow-typed": "^2.6.1",
"jest": "^24.9.0"
},
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-do-expressions": "^7.6.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.6.2",
"@babel/runtime-corejs3": "^7.8.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-module-resolver": "^4.0.0",
"set-value": "^3.0.1"
}
}