-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "backend",
"version": "0.0.1",
"description": "Backend for edge-ml",
"main": "server.js",
"scripts": {
"start": "node server.js",
"stats": "NODE_ENV=docker node stats.js",
"startTestENV": "NODE_ENV=test node server.js",
"start:docker": "NODE_ENV=docker node server.js",
"test": "NODE_ENV=test nyc mocha --exit",
"createDevices": "node createDevices.js"
},
"author": "Tobias King <king@teco.edu>",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.16",
"amqplib": "^0.10.5",
"axios": "^1.8.4",
"config": "^3.3.12",
"dotenv": "^16.4.7",
"downsample": "^1.4.0",
"jsonwebtoken": "^9.0.2",
"koa": "^2.16.0",
"koa-body": "^6.0.1",
"koa-cookie": "^1.0.0",
"koa-cors": "0.0.16",
"koa-logger": "^3.2.1",
"koa-router": "^13.0.1",
"koa2-swagger-ui": "*",
"mongoose": "^8.13.0",
"table": "^6.9.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^9.23.0"
}
}