mirror of
https://github.com/okiba-org/backend.git
synced 2025-02-21 16:52:02 +00:00
29 lines
670 B
JSON
29 lines
670 B
JSON
{
|
|
"name": "okiba",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "ts-node-dev src/main.ts",
|
|
"build": "pnpm install && tsc",
|
|
"start": "node public/main.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.12",
|
|
"@types/express": "^4.17.13",
|
|
"@types/node": "^18.0.3",
|
|
"@types/pg": "^8.6.5",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.1",
|
|
"express": "^4.18.1",
|
|
"pg": "^8.7.3"
|
|
}
|
|
}
|