프로젝트 초기 설정
parents
.gitignore
0 → 100644
README.md
0 → 100644
frontend/.gitignore
0 → 100644
frontend/package.json
0 → 100644
frontend/postcss.config.js
0 → 100644
frontend/src/App.tsx
0 → 100644
frontend/src/index.html
0 → 100644
frontend/src/index.tsx
0 → 100644
frontend/tailwind.config.js
0 → 100644
frontend/tsconfig.json
0 → 100644
frontend/webpack.common.js
0 → 100644
frontend/webpack.dev.js
0 → 100644
frontend/webpack.prod.js
0 → 100644
nodemon.json
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "backend-frontend-integrated", | ||
| "version": "1.0.0", | ||
| "description": "", | ||
| "main": "index.js", | ||
| "scripts": { | ||
| "dev": "nodemon", | ||
| "build:frontend": "cd frontend && npm run build", | ||
| "build:server": "tsc -p .", | ||
| "build": "npm run build:frontend && npm run build:server", | ||
| "start": "node ./dist/index.js", | ||
| "test": "echo \"Error: no test specified\" && exit 1" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://gitlab.yoonlab.org/templates/backend-frontend-integrated.git" | ||
| }, | ||
| "keywords": [ | ||
| "TypeScript", | ||
| "Frontend", | ||
| "Backend" | ||
| ], | ||
| "author": "Daeki Yoon", | ||
| "license": "ISC", | ||
| "devDependencies": { | ||
| "@types/express": "^4.17.13", | ||
| "nodemon": "^2.0.16", | ||
| "ts-node": "^10.8.1", | ||
| "typescript": "^4.7.4" | ||
| }, | ||
| "dependencies": { | ||
| "express": "^4.18.1" | ||
| } | ||
| } |
src/app.ts
0 → 100644
src/index.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment