Skip to content
Snippets Groups Projects
package.json 772 B
Newer Older
kb01548's avatar
kb01548 committed
{
  "name": "web-tech",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "type": "module",
  "scripts": {
    "build": "babel index.js --out-file dist/index_dist.js",
    "start": "npm run build && node dist/index.js",
    "dev": "nodemon index.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@babel/cli": "^7.24.1",
    "@babel/core": "^7.24.3",
    "@babel/preset-env": "^7.24.3",
    "prisma": "^5.11.0"
  },
  "dependencies": {
    "@babel/helper-validator-identifier": "^7.22.20",
    "@prisma/client": "^5.11.0",
    "body-parser": "^1.20.2",
    "cors": "^2.8.5",
    "dotenv": "^16.4.5",
    "express": "^4.19.2",
    "nodemon": "^3.1.0"
  }
}