-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.26 KB
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
{
"name": "easytopic-dashboard-api",
"version": "1.0.0",
"description": "Easytopic dashboard that connects to the workers with RabbitMQ and allows control by Rest API",
"repository": {
"type": "git",
"url": "git+https://github.com/easytopic-project/easytopic-dashboard-api.git"
},
"license": "ISC",
"scripts": {
"build": "babel src -d dist",
"dev": "export FILES_PATH=\"$PWD/temp/files\" && nodemon --exec babel-node src/index.js",
"start": "node dist/index.js",
"lint": "eslint .",
"prettier": "prettier-check \"src/**/*.js\"",
"docker": "docker-compose up"
},
"dependencies": {
"amqplib": "^0.5.6",
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dockerode": "^3.3.1",
"express": "^4.17.1",
"mongoose": "^7.5.2",
"node-fetch": "^2.6.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"main": "./dist/index.js",
"devDependencies": {
"@babel/cli": "*",
"@babel/core": "*",
"@babel/eslint-parser": "^7.12.13",
"@babel/node": "*",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "*",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "*"
}
}