-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "poetry-server",
"version": "1.0.0",
"description": "server for poetry",
"main": "app.js",
"scripts": {
"test": ".",
"dev": "node app.js",
"initdb": "node src/db/initdb.js",
"api-doc": "apidoc -i src/route -o api-doc/api",
"dev:start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "."
},
"keywords": [
"koa2",
"nodejs",
"mongodb",
"mysql"
],
"author": "sam.hongyang",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.0.0",
"bcrypt": "^3.0.2",
"joi": "^14.1.0",
"jsonwebtoken": "^8.4.0",
"knex": "^0.15.2",
"koa": "^2.6.1",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.0.0",
"koa-jwt": "^3.5.1",
"koa-log4": "^2.3.2",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"mysql": "^2.16.0",
"mysql2": "^1.6.4",
"nodemon": "^1.18.9",
"pm2": "^3.2.4",
"sequelize": "^4.41.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}