-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.76 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
{
"name": "healthree-backend",
"description": "\"# healthree-backend\"",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"test:main_service": "jest/3_layers/main_service.test.js",
"test:main_controller": "jest/3_layers/main_controller.test.js",
"test:main_repository": "jest/3_layers/main_repository.test.js",
"test:main.validation": "jest/validation/main.validation.test.js",
"test:s3.middleware": "jest/middlewares/s3.middleware.test.js",
"start": "nodemon ./src/app.js",
"db:init": "node ./db_init.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Final-healthree/healthree-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Final-healthree/healthree-backend/issues"
},
"homepage": "https://github.com/Final-healthree/healthree-backend#readme",
"dependencies": {
"dotenv": "^16.0.1",
"editly": "^0.13.0",
"express": "^4.18.1",
"express-session": "^1.17.3",
"ffmpeg": "^0.0.4",
"fluent-ffmpeg": "^2.1.2",
"gl": "^5.0.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"nodemon": "^2.0.19",
"passport": "^0.6.0",
"passport-kakao": "^1.0.1",
"path": "^0.12.7",
"prettier": "^2.7.1"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@types/jest": "^29.0.0",
"jest": "^29.0.2",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"sequelize": "^6.21.4",
"sequelize-cli": "^6.4.1"
}
}