-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "@europeana/media-proxy",
"description": "Express app to proxy media from providers.",
"author": "Richard Doe <richard.doe@europeana.eu>",
"keywords": [
"code4lib",
"http",
"proxy",
"express",
"europeana"
],
"license": "EUPL-1.2",
"dependencies": {
"axios": "^1.2.2",
"cors": "^2.8.5",
"elastic-apm-node": "^3.41.1",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"http-proxy-middleware": "^2.0.6",
"md5": "^2.3.0",
"mime-types": "^2.1.35",
"mongodb": "^4.13.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"dotenv": "^16.0.3",
"eslint": "^8.0.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"rollup": "^3.14.0",
"serve": "^14.2.0",
"sinon": "^15.0.3",
"yaml": "^2.3.1"
},
"engines": {
"node": "^18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/europeana/media-proxy.js.git"
},
"scripts": {
"build": "rollup -c",
"dev": "nodemon -r dotenv/config -r ./src/monitor.cjs src/server.js",
"docs": "serve -p 4000 docs/api",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --no-fix --ignore-path .gitignore .",
"start": "node -r ./dist/monitor.cjs dist/server.cjs",
"test": "node --expose-gc --no-compilation-cache --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.js",
"test:coverage": "npm run test -- --coverage",
"test:coverage:ci": "npm run test -- --coverage --maxWorkers 2",
"version": "node bin/openapi-version.js && node bin/sonar-project-version.js && git add docs/api && git add sonar-project.properties"
},
"version": "0.2.6",
"type": "module"
}