-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.18 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
{
"name": "tagging-service",
"version": "0.1.1",
"description": "Holds a generic tagging service.",
"repository": {
"type": "git",
"url": "https://github.com/openintegrationhub/openintegrationhub.git",
"directory": "services/tagging-service"
},
"main": "index.js",
"scripts": {
"start": "node app/index.js",
"start:nodemon": "NODE_ENV=development nodemon -r dotenv/config app/index.js --watch app/ | bunyan",
"start:container": "nodemon -r dotenv/config app/index.js --watch app/ | bunyan",
"start:nodemon:minikube": ". ../../minikube/.env && yarn start:nodemon",
"pretest": "eslint app test --ext .js --ext .json",
"test": "jest --runInBand",
"format": "prettier --write 'app/**/*.js' && eslint app test --fix",
"build": "echo \"No Build defined\"",
"build:docker": "docker build -t cloudecosystem/tagging-service:${VERSION} -f Dockerfile ../../",
"run:initializeData": "node -r dotenv/config scripts/initializeData.js",
"run:addFakeCollections": "node -r dotenv/config scripts/addFakeCollections.js"
},
"dependencies": {
"@openintegrationhub/event-bus": "^1.1.3",
"@openintegrationhub/iam-utils": "^1.5.3",
"body-parser": "^1.19",
"bunyan": "^1.8.14",
"bunyan-format": "^0.2.1",
"cors": "^2.8.5",
"cronstrue": "^1.94.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"faker": "^5.5.3",
"lodash": "^4.17.20",
"mongoose": "^6.2.1",
"request": "^2.87.0",
"request-promise": "^4.2.5",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^22.1.0",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^24.7.1",
"jest-environment-node": "^26.1.0",
"mongod": "^2.0.0",
"mongodb": "^3.5.9",
"mongodb-memory-server": "6.6.3",
"nock": "^13.0.2",
"nodemon": "^2.0.4",
"path": "^0.12.7",
"prettier": "2.1.1",
"supertest": "^3.1.0"
},
"author": "weberjm",
"license": "Apache-2.0"
}