-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "koa-blog-api",
"version": "1.0.1",
"description": "Service api for nuxt-blog-web",
"repository": "https://github.com/BlogExplore/koa-blog-api.git",
"author": "vast <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./app/app.js",
"prod": "cross-env NODE_ENV=production node ./app/app.js"
},
"keywords": [
"vast",
"yayxs",
"koa-api",
"koa2",
"koa-blog"
],
"dependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@koa/multer": "^3.0.0",
"@koa/router": "^10.0.0",
"ajv": "^8.3.0",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"husky": "^6.0.0",
"jimp": "^0.16.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa2-cors": "^2.0.6",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"sequelize": "^6.6.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"nodemon": "^2.0.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
}
}