-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
44
45
46
47
48
{
"name": "alert-queue",
"version": "1.3.10",
"main": "server/index.js",
"author": "Andrea Tombolato <andreacw96@gmail.com> (https://github.com/andreacw5)",
"description": "A simple queue system for Alert Connect",
"contributors": [
"Andrea Tombolato <andreacw96@gmail.com> (https://github.com/andreacw5)"
],
"private": true,
"license": "MIT",
"repository": "https://github.com/alertconnect/alert-queue",
"bugs": "https://github.com/alertconnect/alert-queue/issues",
"homepage": "https://github.com/alertconnect/alert-queue#readme",
"scripts": {
"dev": "nodemon server/index.js",
"start": "node server/index.js"
},
"dependencies": {
"adm-zip": "^0.5.12",
"axios": "^1.7.2",
"bull": "^4.12.9",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fs": "^0.0.2",
"fs-extra": "^11.2.0",
"joi": "^17.13.1",
"node-cron": "^3.0.3",
"path": "^0.12.7",
"pino": "^9.1.0",
"pino-pretty": "^11.1.0",
"request": "^2.88.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-node": "^2.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.6",
"prettier": "^2.1.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}