-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 925 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 925 Bytes
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
{
"name": "@bitriel/backend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"lint": "eslint ."
},
"dependencies": {
"@bitriel/http-client": "workspace:*",
"@koompi/oauth": "^1.0.4",
"@types/cookie-parser": "^1.4.10",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.19.4",
"morgan": "^1.10.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.7",
"@types/node": "^24.10.0",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"tsx": "^4.19.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.3"
}
}