Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 해석
- Portfolio
- 구글
- error
- php
- C lanuage
- java
- 번역
- kakao
- H2O
- 컴퓨터과학총론
- 한글
- centOS7
- MySQL
- techEmpower
- ubuntu
- mariadb
- 자바
- 개발자
- C
- server
- 프래그먼트
- unity
- caddy
- it
- javascript
- android
- 안드로이드
- NGINX
- 개발
Archives
- Today
- Total
개발모음집
typescript package.json 파일 최초 설정 본문
{
"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"
}