-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "cycleapi",
"version": "1.0.0",
"description": "Product forecasting and recommendation API",
"license": "GPL-3.0-or-later",
"author": "Ahmet Arda Kavakcı",
"type": "module",
"main": "src/server.ts",
"scripts": {
"build": "bun build --target=bun src/*.ts src/**/*.ts --outdir=dist",
"start": "bun run dist/src/server.js",
"check": "tsc --noEmit",
"dev": "bun --hot run src/server.ts"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.0",
"bcryptjs": "^3.0.2",
"consola": "^3.4.2",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"http-status-codes": "^2.3.0",
"ip": "^2.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.15.0",
"ms": "^2.1.3",
"typescript": "^5.8.3",
"validator": "^13.15.0",
"yamljs": "^0.3.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/consola": "^2.2.8",
"@types/date-fns": "^2.6.3",
"@types/express": "^5.0.2",
"@types/ip": "^1.1.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/mongoose": "^5.11.97",
"@types/ms": "^2.1.0",
"@types/node": "^22.15.18",
"@types/validator": "^13.15.0",
"@types/yamljs": "^0.2.34"
}
}