-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 724 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 724 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
{
"name": "codeground",
"version": "0.0.0",
"private": true,
"nodemonConfig": {
"ignore": [
"node_modules/*",
"views/*",
"*.json",
"public/*"
],
"nodeArgs": [
"--inspect"
],
"delay": "1000"
},
"scripts": {
"start": "NODE_ENV=production node app",
"debug": "nodemon app"
},
"dependencies": {
"axios": "^0.19.2",
"cookie-parser": "~1.4.5",
"debug": "~4.1.1",
"express": "~4.17.1",
"express-handlebars": "^4.0.5",
"express-session": "^1.17.1",
"http-errors": "~1.8.0",
"lowdb": "^1.0.0",
"morgan": "~1.10.0",
"nanoid": "^3.1.31",
"passport": "^0.4.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}