-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.89 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
{
"name": "node-js-express-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node app.js"
},
"eslintConfig": {
"extends": [
"airbnb-base"
],
"env": {
"node": true,
"jasmine": true
},
"rules": {
"linebreak-style": 0,
"no-console": 0,
"no-param-reassign": 0,
"no-return-assign": 0,
"class-methods-use-this": 0,
"no-underscore-dangle": 0,
"no-restricted-syntax": 0,
"no-await-in-loop": 0,
"func-names": 0,
"max-len": [
"error",
{
"code": 140,
"ignoreComments": true,
"ignoreTrailingComments": true,
"ignoreUrls": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true
}
],
"comma-dangle": [
"error",
{
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "only-multiline",
"exports": "only-multiline",
"functions": "never"
}
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.spec.js",
"**/*.integration.js",
"gulp/**/*"
]
}
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexandermakalov/node-js-express-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexandermakalov/node-js-express-starter/issues"
},
"homepage": "https://github.com/alexandermakalov/node-js-express-starter#readme",
"dependencies": {
"express": "^4.16.4"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2"
}
}