-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 793 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 793 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
{
"name": "jumping-frog-server",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "nodemon ./index.js --exec babel-node",
"debug": "nodemon --inspect=0.0.0.0:9229 app.js"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jest": "^28.1.3",
"mongoose": "^6.5.2",
"morgan": "~1.9.1",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.8",
"nodemon": "^2.0.19",
"cors": "^2.8.5"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"nodemon": "^2.0.19"
}
}