29 lines
692 B
JSON
29 lines
692 B
JSON
{
|
|
"type": "module",
|
|
"name": "kuwot-api",
|
|
"version": "1.0.0",
|
|
"description": "Kuwot app API powered by ExpressJs",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "tsc",
|
|
"start": "tsc && node dist/index.js",
|
|
"format": "prettier --write ."
|
|
},
|
|
"author": "Dhemas Nurjaya",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"dotenv": "^17.2.3",
|
|
"express": "^5.1.0",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.3",
|
|
"@types/node": "^24.8.1",
|
|
"eslint": "^9.38.0",
|
|
"nodemon": "^3.1.10",
|
|
"prettier": "^3.6.2",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|