-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.29 KB
/
package.json
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
49
50
51
52
53
54
{
"name": "webservices-budget",
"version": "1.0.0",
"description": "Demo application for the course Web Services.",
"main": "src/index.js",
"repository": "[email protected]:HOGENT-Web/webservices-budget.git",
"author": "Thomas Aelbrecht <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "env-cmd nodemon",
"test": "env-cmd -f .env.test jest --runInBand",
"test:coverage": "env-cmd -f .env.test jest --runInBand --coverage"
},
"dependencies": {
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"config": "^3.3.9",
"joi": "^17.11.0",
"knex": "^2.5.1",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-helmet": "^7.0.2",
"mysql2": "^3.6.1",
"node-emoji": "^2.1.0",
"winston": "^3.10.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
},
"nodemonConfig": {
"signal": "SIGTERM",
"ignore": [
"node_modules/*",
".vscode/*"
],
"delay": "80",
"watch": [
"config",
"src"
],
"ext": "js,json",
"legacyWatch": true,
"exec": "node --inspect=0.0.0.0:9001 --trace-warnings src/index.js"
},
"engines": {
"npm": ">=9.8.0",
"node": ">=20.6.0",
"yarn": ">=1.22.0"
}
}