-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.18 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
{
"name": "catenax-api",
"version": "1.2.0",
"description": "Catena-X API",
"main": "dist/runserver.js",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts ./src ./runserver.ts",
"lint-fix": "eslint -c .eslintrc.js --ext .ts --fix ./src",
"build": "tsc",
"predev": "npm run build",
"dev": "node -r source-map-support/register .",
"test": "./node_modules/.bin/mocha --exit --require ts-node/register --recursive --extension spec.ts ./test/"
},
"author": {
"name": "Matthias Ernst",
"email": "hmernst@gmail.com"
},
"license": "UNLICENSED",
"devDependencies": {
"@databases/pg-schema-cli": "^4.3.0",
"@tsconfig/node14": "^1.0.1",
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.184",
"@types/mocha": "^9.1.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.21",
"@types/sinon": "^10.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^38.0.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^9.2.1",
"nock": "^13.2.4",
"sinon": "^13.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@databases/pg": "^5.4.1",
"@databases/pg-migrations": "^5.0.1",
"@databases/pg-typed": "^4.3.0",
"@sentry/node": "^6.18.2",
"@sentry/tracing": "^6.18.2",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"joi": "^17.6.0",
"keycloak-connect": "^17.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"source-map-support": "^0.5.21",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"winston": "^3.6.0"
}
}