-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 681 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 681 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
{
"name": "@accessibility-everywhere/monitoring-api",
"version": "1.0.0",
"description": "Monitoring API for accessibility violation reporting and analytics",
"main": "src/Server.mjs",
"type": "module",
"scripts": {
"build": "rescript build",
"dev": "rescript build -w",
"start": "node src/Server.mjs",
"clean": "rescript clean"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"express-rate-limit": "^7.1.5",
"compression": "^1.7.4",
"dotenv": "^16.3.1",
"joi": "^17.11.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"rescript": "^11.1.0",
"@rescript/core": "^1.5.0"
}
}