-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.23 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.23 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
{
"name": "rudi-node-catalog",
"version": "2.6.0",
"private": false,
"description": "API for RUDI producer node",
"main": "./run-rudinode-catalog.js",
"type": "module",
"scripts": {
"prestart": "npm install",
"pnpm_install": "corepack enable pnpm; corepack use pnpm@latest",
"start": "nodemon ./run-rudinode-catalog.js",
"extstart": "nodemon -e js,ini --exec \"npm run rudiapp\"",
"rudiapp": "node run-rudinode-catalog.js",
"devstart": "nodemon ./run-rudinode-catalog.js --conf=./0-ini/conf_custom.ini",
"tracestart": "nodemon --inspect ./run-rudinode-catalog.js --conf=./0-ini/conf_custom.ini",
"test": "node ./tests/restApiTests.js",
"lint": "prettier -c \"src/**/*.js\"; eslint \"**/*.js\"",
"prettify": "prettier -w \"src/**/*.js\""
},
"nodemonConfig": {
"execMap": {
"js": "export RUDI_API_GIT_REV=\"$(git rev-parse --short HEAD)\"; node "
}
},
"keywords": [
"api",
"rudi",
"rudi-producer",
"metadata",
"open-data"
],
"author": "Olivier Martineau <community@rudi-univ-rennes1.fr>",
"homepage": "https://app.swaggerhub.com/apis/OlivierMartineau/RUDI-PRODUCER",
"license": "EUPL-1.2",
"dependencies": {
"@aqmo.org/jwt-lib": "^1.1.14",
"@aqmo.org/rudi_logger": "^1.1.6",
"@fastify/compress": "^8.3.1",
"@fastify/multipart": "^9.4.0",
"axios": "^1.13.2",
"date-and-time": "^4.2.0",
"fastify": "^5.7.1",
"ini": "^6.0.0",
"lodash": "^4.17.21",
"markdown-table": "^3.0.4",
"minimist": "^1.2.8",
"mongoose": "8.15.1",
"mongoose-geojson-schema": "^2.2.5",
"mongoose-int32": "^0.6.0",
"nanoid": "^5.1.6",
"object-path": "^0.11.8",
"sanitize-filename": "^1.6.3",
"sshpk": "^1.18.0",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/eslint-parser": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"braces": "^3.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "^4.3.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.0"
},
"overrides": {
"braces": "$braces"
}
}