-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.12 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@natlibfi/melinda-rest-api-http",
"description": "RESTful API for Melinda",
"author": {
"name": "The National Library of Finland"
},
"keywords": [],
"homepage": "https://github.com/natlibfi/melinda-rest-api-http",
"bugs": {
"url": "https://github.com/natlibfi/melinda-rest-api-http/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:natlibfi/melinda-rest-api-http.git"
},
"license": "MIT",
"version": "3.5.0",
"main": "dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node ./dist/index",
"start:dev": "babel-node ./src/index",
"lint": "eslint src",
"lint:dev": "eslint --fix src",
"test": "npm run lint",
"dev": "NODE_ENV=development cross-env nodemon",
"build": "babel src --source-maps --copy-files --delete-dir-on-start --out-dir=dist",
"prod": "NODE_ENV=production npm run build && npm run start"
},
"dependencies": {
"@babel/runtime": "^7.26.9",
"@natlibfi/marc-record-serializers": "^10.1.5",
"@natlibfi/melinda-backend-commons": "^2.3.6",
"@natlibfi/melinda-commons": "^13.0.19",
"@natlibfi/melinda-rest-api-commons": "^4.2.4",
"@natlibfi/passport-melinda-aleph": "^3.0.7",
"@natlibfi/sru-client": "^6.0.17",
"body-parser": "^1.20.2",
"express": "^4.21.2",
"http-status": "^2.1.0",
"moment": "^2.30.1",
"mongo-sanitize": "^1.1.0",
"nodemon": "^3.1.9",
"passport": "^0.7.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.9",
"@babel/node": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/register": "^7.25.9",
"@natlibfi/eslint-config-melinda-backend": "^3.0.5",
"cross-env": "^7.0.3",
"eslint": "^8.57.1"
},
"overrides": {
"nanoid": "^3.3.8"
},
"eslintConfig": {
"extends": "@natlibfi/melinda-backend"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "maintained node versions"
}
]
],
"plugins": [
[
"@babel/transform-runtime"
]
]
},
"nodemonConfig": {
"exec": "npm run lint:dev && npm run start:dev",
"watch": [
"src/*"
],
"ext": "js",
"delay": 2.5
}
}