-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 835 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
{
"name": "service",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development nodemon --ignore node_modules/",
"start": "cross-env NODE_ENV=production node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@koa/router": "^10.1.1",
"ioredis": "^4.28.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.3",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.3",
"koa2-cors": "^2.0.6",
"log4js": "^6.3.0",
"moment": "^2.29.1",
"mysql2": "^2.3.2",
"nanoid": "^3.1.30",
"nodemailer": "^6.7.5",
"sequelize": "^6.8.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^11.0.0",
"nodemon": "^2.0.13"
}
}