Skip to content
Snippets Groups Projects
package.json 1012 B
Newer Older
{
  "name": "server-start",
  "version": "1.0.0",
  "description": "Start of a Typescript Express Server",
  "main": "./src/server.js",
  "scripts": {
    "start": "node --inspect=5858 -r ts-node/register ./src/server.ts",
    "start:watch": "nodemon",
    "build": "tsc",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "@types/express": "^4.17.9",
    "@types/node": "^14.14.10",
    "@types/systeminformation": "^3.54.1",
    "body-parser": "^1.19.0",
    "cors": "^2.8.5",
    "express": "^4.17.1",
    "multer": "^1.4.2",
    "nodemon": "^2.0.6",
    "systeminformation": "^5.6.12",
    "ts-node": "^9.1.0",
    "typescript": "^4.1.2"
  },
  "nodemonConfig": {
    "ignore": [
      "**/*.test.ts",
      "**/*.spec.ts",
      ".git",
      "node_modules"
    ],
    "watch": [
      "src"
    ],
    "exec": "npm start",
    "ext": "ts"
  },
  "devDependencies": {
    "@types/cors": "^2.8.10",
    "@types/multer": "^1.4.5"
  }
}