-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 864 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 864 Bytes
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
{
"name": "implementation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "nodemon ./index.js",
"start": "node ./index.js",
"test": "node --test",
"queue-status": "node scripts/queue-status.js",
"priority-report": "node scripts/priority-report.js",
"migrate": "node scripts/migrate.js",
"backup-db": "node scripts/backup-apps.js",
"queue-refetch": "node scripts/queue-refetch.js",
"reset-app": "node scripts/queue-refetch.js"
},
"keywords": [],
"author": "",
"license": "AGPLv3",
"dependencies": {
"body-parser": "^1.20.3",
"dotenv": "^16.0.3",
"express": "^4.21.2",
"express-rate-limit": "^6.7.0",
"express-validator": "^7.2.1",
"helmet": "^5.1.1",
"pg": "^8.9.0",
"pug": "^3.0.2"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}