-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnodemon.json
More file actions
33 lines (31 loc) · 746 Bytes
/
Copy pathnodemon.json
File metadata and controls
33 lines (31 loc) · 746 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
{
"env": {
"browser": true,
"es6": true,
"MONGO_ATLAS_PW": "C4A8141040C2D5645AE7CD273915C221D63D123E89F9738B9AAE95D2265280F1",
"JWT_KEY": "secret_this_should_be_longer"
},
"scripts": {
"start": "node server.js"
},
"extends": ["airbnb-base", "plugin:prettier/recommended"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"document": true,
"window": true,
"fetch": true,
"localStorage": true,
"FormData": true,
"FileReader": true,
"Blob": true,
"navigator": true,
"URL": true,
"URLSearchParams": true,
"Headers": true,
"Request": true,
"Response": true,
"IntersectionObserver": true,
"IntersectionObserverEntry": true
}
}