-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1012 Bytes
/
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
{
"name": "webservices-beer-review",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "npx env-cmd nodemon src/index.js",
"web": "node src/index.js",
"test": "npx env-cmd -f .env.test jest --runInBand",
"test:coverage": "yarn test --coverage",
"lint": "npx eslint . --fix",
"test:ci": "jest"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^10.1.1",
"argon2": "^0.28.3",
"config": "^3.3.6",
"env-cmd": "^10.1.0",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.14",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa2-swagger-ui": "^5.3.0",
"mysql2": "^2.3.3",
"node-emoji": "^1.11.0",
"serialize-error": "^8.1.0",
"swagger-jsdoc": "^6.1.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^8.4.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.3",
"nodemon": "^2.0.12",
"supertest": "^6.1.6"
}
}