개발모음집

typescript package.json 파일 최초 설정 본문

client

typescript package.json 파일 최초 설정

void 2020. 2. 27. 10:00

 

 

{
  "name": "voiddeveloper-backend",
  "version": "1.0.0",
  "description": "",
  "main": "app.js",
  "scripts": {
    "start": "node app.js",
    "build": "pm2 start app.js",
    "test": "mocha spec/app.spec.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/voiddeveloper/voiddeveloper-backend.git"
  },
  "keywords": [
    "voiddeveloper"
  ],
  "dependencies": {
    "cookie-parser": "^1.4.4",
    "cors": "^2.8.5",
    "dotenv": "^8.2.0",
    "express": "^4.17.1",
    "express-session": "^1.16.2",
    "morgan": "^1.9.1",
    "pm2": "^4.2.3",
    "ts-node": "^8.6.2"
  },
  "devDependencies": {
    "@types/dotenv": "^8.2.0",
    "@types/express": "^4.17.2",
    "@typescript-eslint/eslint-plugin": "^2.20.0",
    "@typescript-eslint/parser": "^2.20.0",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-base": "^14.0.0",
    "eslint-plugin-import": "^2.20.1",
    "ts-node-dev": "^1.0.0-pre.44",
    "typescript": "^3.8.2"
  },
  "author": "void",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/voiddeveloper/voiddeveloper-backend/issues"
  },
  "homepage": "https://github.com/voiddeveloper/voiddeveloper-backend#readme"
}