-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"lint": "eslint .",
"build": "webpack --config ./webpack.config.js --mode=development",
"build:production": "webpack --config ./webpack.prod.config.js --mode=production",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyeeyoung/wishboard-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hyeeyoung/wishboard-server/issues"
},
"homepage": "https://github.com/hyeeyoung/wishboard-server#readme",
"dependencies": {
"app-root-path": "^3.0.0",
"aws-sdk": "^2.1145.0",
"axios": "^0.26.1",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^6.5.1",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
"ioredis": "^5.2.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"mysql2": "^2.3.0",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.2",
"winston": "^3.5.1",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "2.5.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}