-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.03 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ensemble-api",
"version": "1.0.0",
"description": "Ensemble APIs",
"main": "./src/server.js",
"exports": "./src/server.js",
"scripts": {
"start": "npm run migration && node src/server.js",
"local": "npm run migration && nodemon src/server.js",
"test": "npm run migration && NODE_ENV=test mocha tests/* -r dotenv/config --timeout 1000 --recursive --exit",
"migration": "npx sequelize-cli db:migrate",
"migration:undo": "npx sequelize-cli db:migrate:undo",
"coverage": "c8 --reporter lcov --reporter text --reporter html npm test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"esdoc": "esdoc"
},
"author": "Keyminds",
"license": "ISC",
"dependencies": {
"axios": "^1.5.0",
"chalk": "^5.3.0",
"cls-hooked": "^4.2.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-integrate-test-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-json-validator-middleware": "^3.0.1",
"helmet": "^7.0.0",
"http-status": "^1.6.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pg": "^8.11.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.32.1",
"stoppable": "^1.1.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"winston": "^3.10.0"
},
"type": "module",
"devDependencies": {
"c8": "^8.0.1",
"chai": "^4.3.7",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
},
"c8": {
"all": true,
"include": [
"src/*"
],
"exclude": [
"src/config/*",
"src/middlewares/*",
"src/utils/*"
],
"check-coverage": false,
"branches": 80,
"lines": 80,
"functions": 80,
"statements": 80
}
}