-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 920 Bytes
/
package.json
File metadata and controls
executable file
·45 lines (45 loc) · 920 Bytes
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
{
"name": "template-node-koa",
"version": "0.1.0",
"description": "Another NodeJS Koa2 Project from template-node-koa",
"private": true,
"scripts": {
"start": "NODE_ENV=production node server",
"dev": "node server",
"lint": "eslint --ext .js,.vue src"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true,
"browser": true
},
"rules": {
"no-console": "off",
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
],
"comma-dangle": "warn",
"padded-blocks": "warn"
},
"globals": {
"describe": true,
"before": true,
"it": true
}
},
"dependencies": {
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0"
},
"devDependencies": {},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
}
}