-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 832 Bytes
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
{
"name": "blog-server",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node bin/www",
"dev": "cross-env NODE_ENV=dev ./node_modules/.bin/nodemon bin/www",
"prd": "cross-env NODE_ENV=production pm2 start bin/www"
},
"dependencies": {
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"debug": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-body": "^4.2.0",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.1.0",
"koa-redis": "^4.0.1",
"koa-router": "^7.4.0",
"koa-session": "^6.1.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"pug": "^2.0.3",
"sequelize": "^6.3.5"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}