Skip to content

Commit

Permalink
Ci: 배포 실패 원인 찾기 #183
Browse files Browse the repository at this point in the history
  • Loading branch information
doeunyy committed Feb 19, 2024
1 parent ef89e08 commit 7935972
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 46 deletions.
3 changes: 2 additions & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
web: npm ci & npm run start
# web: npm ci & npm run start
web: npm ci && npm run start
90 changes: 45 additions & 45 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
{
"name": "teammate-backend",
"version": "0.0.1",
"description": "",
"main": "app.ts",
"scripts": {
"start": "node main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon --exec ts-node src/app.ts",
"start:dist": "webpack --mode production & node ./dist/main.js",
"build": "webpack --mode production"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.7.0",
"redaxios": "^0.5.1",
"sequelize": "^6.35.2",
"sequelize-cli": "^6.6.2",
"ts-loader": "^9.5.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.90.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
"name": "teammate-backend",
"version": "0.0.1",
"description": "",
"main": "app.ts",
"scripts": {
"start": "node dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon --exec ts-node src/app.ts",
"start:dist": "webpack --mode production & node ./dist/main.js",
"build": "webpack --mode production"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.7.0",
"redaxios": "^0.5.1",
"sequelize": "^6.35.2",
"sequelize-cli": "^6.6.2",
"ts-loader": "^9.5.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.90.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}

0 comments on commit 7935972

Please sign in to comment.