forked from open-resource-discovery/reference-application
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.99 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
{
"name": "@sap/open-resource-discovery-reference-application",
"version": "1.0.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": "ls -la . && ls -la ./deps && ls -la ./node_modules && ls -la ./dist && node ./dist/src/server.js",
"dev": "tsx watch ./src/server.ts",
"eslint": "eslint . --fix",
"eslint: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 node_modules/jest/bin/jest.js --watchAll",
"test:ci": "node node_modules/jest/bin/jest.js --ci --collectCoverage"
},
"repository": {
"type": "git",
"url": "https://github.com/SAP-samples/open-resource-discovery-reference-application"
},
"author": "SAP SE",
"dependencies": {
"@fastify/basic-auth": "5.1.1",
"@fastify/etag": "5.1.0",
"@fastify/static": "6.12.0",
"fastify": "^4.25.1",
"lodash": "^4.17.21",
"pino-pretty": "^10.3.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@sap/open-resource-discovery": "./deps/open-resource-discovery",
"@tsconfig/node20": "20.1.2",
"@types/jest": "^29.5.14",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4",
"@types/pino": "^7.0.4",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"openapi-types": "^12.1.3",
"prettier": "3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.2.5",
"tsx": "4.6.2",
"typescript": "~5.3.3"
}
}