-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 KB
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
{
"name": "koa2-tutorial",
"version": "1.0.0",
"description": "A tutorial for beginners in Koa2.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chencl1986/koa2-tutorial.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chencl1986/koa2-tutorial/issues"
},
"homepage": "https://github.com/chencl1986/koa2-tutorial#readme",
"dependencies": {
"@types/ejs": "^2.6.0",
"co-mysql": "^1.0.0",
"ejs": "^2.6.1",
"koa": "^2.6.2",
"koa-better-body": "^3.0.4",
"koa-ejs": "^4.1.2",
"koa-router": "^7.4.0",
"koa-session": "^5.10.0",
"koa-static": "^5.0.0",
"mysql": "^2.16.0",
"pug": "^2.0.3"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0"
}
}