-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.72 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
{
"name": "dental-admin-api",
"version": "1.0.0",
"author": "Mkild",
"scripts": {
"start": "node bin/www",
"dev": "./node_modules/.bin/nodemon bin/www",
"prd": "pm2 start bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix",
"prettier": "prettier ./ --write",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.21.4",
"debug": "^4.1.1",
"ejs": "^2.7.4",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-favicon": "^2.1.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.1.0",
"koa-passport": "^4.1.3",
"koa-router": "^8.0.8",
"koa-session": "^6.1.0",
"koa-static": "^5.0.0",
"koa-views": "^6.3.1",
"koa2-cors": "^2.0.6",
"log4js": "^6.3.0",
"md5": "^2.3.0",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"node-uuid": "^1.4.8",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"qs": "^6.9.4",
"sequelize": "^6.3.5",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"babel-eslint": "^10.1.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"prettier --write"
]
}
}