-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "jami",
"version": "1.0.0",
"description": "Microservice for Toska's IAM authentication",
"main": "index.js",
"scripts": {
"start": "docker compose up",
"start:dev": "tsx watch --clear-screen=false src/index.ts",
"start:prod": "node build/index.js",
"build": "tsc",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UniversityOfHelsinkiCS/jami.git"
},
"author": "Miko Keskimäki",
"license": "MIT",
"bugs": {
"url": "https://github.com/UniversityOfHelsinkiCS/jami/issues"
},
"homepage": "https://github.com/UniversityOfHelsinkiCS/jami#readme",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"prettier": "3.4.2",
"tsx": "^4.7.3",
"typescript": "^5.3.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.5"
},
"dependencies": {
"@sentry/node": "^8.38.0",
"@sentry/profiling-node": "^8.38.0",
"axios": "^1.6.8",
"dotenv": "^16.0.3",
"express": "^4.21.1",
"morgan": "^1.10.0",
"pg": "^8.8.0",
"sequelize": "^6.28.0",
"umzug": "^3.2.1",
"winston": "^3.8.2"
}
}