-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 731 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 731 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
{
"name": "mailserver-mgmt-backend",
"version": "1.0.0",
"description": "mailserver management app backend",
"main": "index.js",
"private": true,
"scripts": {
"start": "node src/index.js",
"test": "jest --forceExit --detectOpenHandles"
},
"author": "Achim Geisler",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git://github.com/achso18/mailserver-mgmt-backend.git"
},
"dependencies": {
"knex": "^0.20.3",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.15",
"mysql": "^2.17.1",
"objection": "^2.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"jest": "^24.9.0"
}
}