-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.44 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
{
"name": "newsletter-signup",
"version": "1.0.0",
"description": "A page to sign for a newsletter",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Aarav Juneja",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-rate-limit": "^6.5.1"
},
"eslintConfig": {
"root": true,
"extends": "eslint:all",
"env": {
"node": true,
"browser": true,
"es6": true
},
"rules": {
"no-undef": 2,
"no-unused-vars": 1,
"no-console": 0,
"no-extra-semi": 2,
"no-var": 0,
"one-var": 0,
"strict": 0,
"quotes": 0,
"semi": 0,
"no-magic-numbers": 0,
"func-names": 0,
"prefer-arrow-callback": 0,
"indent": 0,
"space-before-function-paren": 0,
"padded-blocks": 0,
"no-path-concat": 0,
"prefer-destructuring": 0,
"capitalized-comments": 0,
"multiline-comment-style": 0,
"no-trailing-spaces": 0,
"quote-props": 0,
"camelcase": 0,
"object-curly-spacing": 0,
"object-curly-newline": 0,
"sort-keys": 0,
"prefer-template": 0,
"no-shadow": 0,
"no-implicit-coercion": 1,
"max-statements": 0,
"no-process-env": 0,
"space-before-blocks": 0,
"consistent-return": [
2,
{
"treatUndefinedAsUnspecified": true
}
]
}
}
}