-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "heroku-scaling",
"version": "0.1.0",
"description": "Sample applications to demonstrate how Heroku scaling can be done",
"main": "src/index.js",
"repository": "git@github.com:mlaccetti/heroku-scaling.git",
"author": "Michael Laccetti <michael@laccetti.com> (https://laccetti.com/)",
"license": "MIT",
"private": false,
"dependencies": {
"koa": "2.7.0",
"koa-conditional-get": "2.0.0",
"koa-etag": "3.0.0",
"koa-logger": "3.2.0",
"koa-response-time": "2.1.0",
"koa-router": "7.4.0",
"koa-static": "5.0.0",
"koa-views": "6.2.0",
"koa-x-request-id": "2.0.0",
"nunjucks": "3.2.0",
"sleep": "6.1.0"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-prettier": "3.1.0",
"husky": "2.3.0",
"lint-staged": "8.1.7",
"nodemon": "1.19.0",
"prettier": "1.17.1"
},
"scripts": {
"start": "node src/index",
"dev": "nodemon src/index"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:prettier/recommended"
],
"env": {
"jest": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2019,
"ecmaFeatures": {
"impliedStrict": true
}
}
},
"eslintIgnore": [
"node_modules"
],
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "always",
"quoteProps": "consistent"
},
"nodemonConfig": {
"ignore": [
"node_modules/*"
],
"ext": "html,js,json"
}
}