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 | 31 |
Tags
- unity
- kakao
- Portfolio
- centOS7
- MySQL
- 한글
- NGINX
- 프래그먼트
- H2O
- android
- 컴퓨터과학총론
- 해석
- ubuntu
- java
- mariadb
- 구글
- techEmpower
- server
- 자바
- php
- C
- 개발
- error
- javascript
- it
- 개발자
- 안드로이드
- 번역
- caddy
- C lanuage
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"
}