-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "wishboard-push-server",
"version": "1.0.0",
"description": "wishboard 푸쉬 알림 서버",
"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/pushScheduler.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyeeyoung/wishboard-push-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hyeeyoung/wishboard-push-server/issues"
},
"homepage": "https://github.com/hyeeyoung/wishboard-push-server#readme",
"dependencies": {
"app-root-path": "^3.0.0",
"axios": "^0.26.1",
"express": "^4.17.3",
"firebase-admin": "^10.0.2",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"node-schedule": "^2.1.0",
"winston": "^3.6.0",
"winston-daily-rotate-file": "^4.6.1"
},
"devDependencies": {
"dotenv": "^16.0.0",
"eslint": "^8.7.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}