forked from Allen7D/mini-shop-server-koa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1009 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
38
39
40
{
"name": "island-server",
"version": "1.0.0",
"description": "学习Koa & TS",
"main": "app.js",
"author": "Allen7D",
"license": "ISC",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -e js --exec 'node' app.js",
"serve": "pm2 start app.js --name='island-server'",
"stop": "pm2 delete island-server",
"commit": "git-cz",
"test": "nodemon test/index.js"
},
"dependencies": {
"axios": "^0.18.0",
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"cross-env": "^6.0.0",
"jsonwebtoken": "^8.4.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.11",
"mysql2": "^1.6.5",
"npm-check": "^5.9.0",
"require-directory": "^2.1.1",
"sequelize": "^5.6.1",
"validator": "^10.11.0"
},
"directories": {
"test": "test"
},
"devDependencies": {
"nodemon": "^1.19.3",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.1.0"
}
}