-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.67 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
55
{
"name": "pix-db-stats",
"version": "3.17.0",
"description": "Collecte de statistiques sur la base de données Pix",
"type": "module",
"engines": {
"node": "^20.16.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"metrics": "node ./lib/application/run-task-metrics.js",
"preinstall": "npx check-engine",
"progress": "node ./lib/application/run-task-progress.js",
"queries-metric": "node ./lib/application/run-task-queries-metric.js",
"blocking-queries": "node ./lib/application/run-task-blocking-queries.js",
"response-time": "node ./lib/application/run-task-response-time.js",
"schedule-tasks": "node ./lib/application/schedule-tasks.js",
"statements": "node ./lib/application/run-task-statements.js",
"test": "NODE_ENV=test mocha --exit --recursive --reporter=${MOCHA_REPORTER:-dot} tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1024pix/pix-db-stats.git"
},
"license": "AGPL-3.0",
"author": "GIP Pix",
"bugs": {
"url": "https://github.com/1024pix/pix-db-stats/issues"
},
"homepage": "https://github.com/1024pix/pix-db-stats#readme",
"dependencies": {
"axios": "^1.3.6",
"cron": "^3.0.0",
"dotenv": "^16.0.0",
"pg": "^8.6.0"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"chai": "^5.0.0",
"chai-as-promised": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-mocha": "^10.4.2",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"prettier": "^3.0.0",
"sinon": "^18.0.0",
"sinon-chai": "^4.0.0"
},
"overrides": {
"chai": "^5.0.0"
}
}