summaryrefslogtreecommitdiff
path: root/package.json
blob: 1932f227550efded28228cad7a9e0870381ab9f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "name": "intro-to-backend",
  "version": "1.0.0",
  "description": "backend tutorial",
  "main": "index.js",
  "type": "module",
  "scripts": {
    "start": "node backend/src/index.js",
    "dev": "nodemon backend/src/index.js"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "dotenv": "^17.3.1",
    "express": "^5.2.1",
    "mongoose": "^9.3.0",
    "nodemon": "^3.1.14"
  }
}