-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 925 Bytes
/
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
{
"name": "instalike",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"main": "tsc && node ./dist/src/main.js",
"dev": "nodemon src/main.ts",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"docker:compose": "docker-compose up -d"
},
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"express": "^4.21.1",
"minio": "^8.0.2",
"mongodb": "^6.10.0",
"multer": "^1.4.5-lts.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/multer": "^1.4.12",
"dotenv": "^16.4.5",
"form-data": "^4.0.1",
"jest": "^29.7.0",
"live-server": "^1.2.2",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}