-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "file-storage",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx nodemon --exec ts-node src/index.ts",
"compose:up": "docker-compose -f docker-compose.yml up -d",
"clinic:doctor": "npx tsc --build ; clinic doctor -- node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/multer": "^3.0.2",
"@koa/router": "^13.1.0",
"dotenv-safe": "^9.1.0",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"mongodb-memory-server": "^10.1.3",
"mongoose": "^8.9.5",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.6",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__multer": "^2.0.7",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.12",
"@types/supertest": "^6.0.2"
}
}