-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 986 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
{
"name": "facesticker_server",
"version": "1.0.0",
"description": "facesticker 서버",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon",
"start": "node index.js",
"build": "npx babel index.js -d dist && npx babel src -d dist/src && npx babel config -d dist/config"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1440.0",
"axios": "^1.4.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"method-override": "^3.0.0",
"multer-s3": "^3.0.1",
"mysql2": "^3.4.3",
"sequelize": "^6.32.1",
"sequelize-cli": "^6.6.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.5",
"@babel/node": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"nodemon": "^2.0.22"
}
}