-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "@open-resource-discovery/reference-application",
"version": "1.1.0",
"description": "This is a reference application for the Open Resource Discovery protocol",
"type": "module",
"private": true,
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"build": "rimraf dist && tsc",
"start": "node ./dist/src/server.js",
"dev": "tsx watch ./src/server.ts",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"prettier": "prettier --write \"**/*.{json,yml,yaml,md}\"",
"prettier:ci": "prettier --check \"**/*.{json,yml,yaml,md}\"",
"format": "npm run prettier && npm run lint",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll",
"test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --ci --collectCoverage"
},
"repository": {
"type": "git",
"url": "https://github.com/open-resource-discovery/reference-application"
},
"author": "SAP SE",
"dependencies": {
"@fastify/basic-auth": "6.2.0",
"@fastify/etag": "6.0.3",
"@fastify/static": "8.2.0",
"fastify": "^5.4.0",
"lodash": "^4.17.21",
"pino-pretty": "^13.0.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@open-resource-discovery/specification": "^1.12.0",
"@sap/eslint-config": "^0.4.0",
"@tsconfig/node20": "20.1.6",
"@types/jest": "^30.0.0",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.20",
"@types/node": "^24.0.10",
"@types/pino": "^7.0.5",
"@types/uuid": "^10.0.0",
"eslint": "^9.30.1",
"jest": "^30.0.4",
"openapi-types": "^12.1.3",
"prettier": "3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"tsx": "4.20.3",
"typescript": "~5.8.3"
}
}