-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
95 lines (95 loc) · 3.19 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
90
91
92
93
94
95
{
"name": "compass-backend",
"version": "1.0.0",
"description": "compass-backend",
"main": "app.ts",
"private": true,
"dependencies": {
"@cloudnative/health-connect": "2.1.0",
"@overnightjs/core": "1.7.6",
"cors": "2.8.5",
"cron": "2.4.3",
"dotenv": "16.3.1",
"env-var": "7.4.1",
"express": "4.18.2",
"express-jwt": "8.4.1",
"firebase-admin": "11.11.1",
"jet-logger": "1.3.1",
"js-yaml": "4.1.0",
"jsonwebtoken": "9.0.2",
"jws": "4.0.0",
"pg": "8.11.3",
"swagger-ui-express": "5.0.0",
"uuid": "9.0.0"
},
"devDependencies": {
"@types/cron": "2.0.1",
"@types/express": "4.17.17",
"@types/express-jwt": "6.0.4",
"@types/jest": "29.5.4",
"@types/jsonwebtoken": "9.0.2",
"@types/jws": "3.2.5",
"@types/node": "18.17.14",
"@types/pg": "8.10.2",
"@types/request": "2.48.8",
"@types/swagger-ui-express": "4.1.3",
"@types/uuid": "9.0.3",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"cpx2": "5.0.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-formatter-github-annotations": "0.1.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"jest": "29.6.4",
"node-flywaydb": "3.0.7",
"nodemon": "3.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"rimraf": "5.0.1",
"run-script-os": "1.1.6",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NUMde/compass-numapp-backend.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "Sebastian Kowalski",
"email": "[email protected]"
},
{
"name": "Christian Lenz",
"email": "[email protected]"
}
],
"scripts": {
"start": "node build/app.js",
"dev": "nodemon src/app.ts",
"dev:debug": "nodemon --inspect src/app.ts",
"dev:watch": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run build:src\"",
"build": "run-s -ls clean build:src build:static",
"build:src": "tsc",
"build:static": "cpx \"src/assets/**\" \"build/assets\"",
"clean": "rimraf build .tsbuildinfo",
"lint": "eslint . --ext .ts",
"lint:report": "eslint . --ext .ts --output-file eslint_report.json --format json",
"lint:annotate": "eslint -f github-annotations . --ext .js,.ts",
"prettier-format": "run-script-os",
"prettier-format:win32": "prettier --config .prettierrc \"./src/**/*.ts\" --write",
"prettier-format:darwin:linux": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-format:default": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "husky install"
}
}