This repository has been archived by the owner on Nov 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.31 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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"babel": "rm -rf dist && babel src -d dist --copy-files",
"development": "node --require appmetrics-dash/monitor --require dotenv/config --require source-map-support/register --inspect=0.0.0.0:9229 dist/app.js dotenv_config_path=.env.development",
"eslint": "eslint src",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"eslint-flow-typed": "eslint flow-typed",
"flow": "flow",
"flow-coverage": "rm -rf flow-coverage && flow-coverage-report --config .flowcoveragerc",
"flow-file-gen": "rm -rf lib && mkdir lib && flow gen-flow-files src --out-dir lib",
"flow-typed": "flow-typed",
"precommit": "lint-staged",
"production": "node --require dotenv/config --require source-map-support/register dist/app.js dotenv_config_path=.env.prodduction",
"start": "if test \"$NODE_ENV\" = \"production\"; then npm run production; else npm run development; fi;",
"start-docker": "if test \"$NODE_ENV\" = \"production\"; then docker-compose build production && docker-compose up production; else docker-compose build development && docker-compose up development; fi;",
"start-local": "npm run babel && npm run start"
},
"keywords": [],
"author": "smhmayboudi",
"license": "ISC",
"dependencies": {
"Promise": "^1.0.5",
"appmetrics-dash": "^4.0.0",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"elasticsearch": "^15.1.1",
"express": "^4.16.3",
"express-winston": "^3.0.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"path": "^0.12.7",
"prom-client": "^11.1.1",
"raven": "^2.6.3",
"retry": "^0.12.0",
"source-map-support": "^0.5.9",
"update": "^0.7.4",
"winston": "^3.0.0",
"winston-transport": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-prettier": "^2.6.2",
"flow-bin": "^0.79.1",
"flow-coverage-report": "^0.5.0",
"flow-typed": "^2.5.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
}
}