forked from JustGreenHand/koa-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "koa-app",
"version": "1.0.0",
"description": "koa实践",
"main": "app/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app/index.js",
"eslint": "eslint --ext .js app/"
},
"author": "",
"license": "ISC",
"pre-commit": [
"eslint"
],
"dependencies": {
"@hapi/joi": "^17.1.1",
"@koa/cors": "^3.1.0",
"formidable": "^1.2.2",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-compose": "^4.1.0",
"koa-router": "^10.0.0",
"log4js": "^6.3.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.2.5",
"nodemon": "^2.0.7"
}
}