-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.86 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
{
"name": "template-service",
"version": "1.0.0",
"description": "This is a template service",
"main": "index.js",
"scripts": {
"start": "node --inspect --nolazy index.js",
"build-config": "node services/configCreatorService.js",
"build-config-start": "yarn build-config && yarn start",
"---------------------test / dev-------------------": "",
"nodemon": "nodemon index.js",
"test": "./node_modules/.bin/mocha --reporter spec ./tests/**/*.js",
"testx": "./node_modules/.bin/mocha --reporter xunit-file ./tests/**/*.js",
"dev-build-config": "node test/buildConfigTest.js",
"test-build-config-prod": "set NODE_ENV=production&& node services/configCreatorService.js",
"test-build-config-dev": "set NODE_ENV=development&& node services/configCreatorService.js"
},
"license": "MIT",
"private": true,
"dependencies": {
"@elastic/elasticsearch": "^8.4.0",
"@godaddy/terminus": "^4.9.0",
"@oas-tools/core": "^3.0.2",
"amqplib": "^0.10.3",
"awilix": "^7.0.2",
"axios": "^0.26.1",
"axios-retry": "^3.3.1",
"body-parser": "^1.20.0",
"config": "^3.3.6",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"etcd3": "^1.1.0",
"express": "^4.18.1",
"jaeger-client": "^3.18.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"node-etcd": "^7.0.0",
"opentracing": "^0.14.5",
"statman-stopwatch": "^2.12.0",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.7",
"sinon": "^14.0.0"
}
}