You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
734 B
24 lines
734 B
{ |
|
"name": "kiddos", |
|
"version": "1.0.0", |
|
"private": true, |
|
"scripts": { |
|
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"", |
|
"dev:backend": "cd backend && npm run dev", |
|
"dev:frontend": "cd frontend && npm run dev", |
|
"build": "npm run build:backend && npm run build:frontend", |
|
"build:backend": "cd backend && npm run build", |
|
"build:frontend": "cd frontend && npm run build" |
|
}, |
|
"devDependencies": { |
|
"concurrently": "^8.2.2", |
|
"typescript": "^5.3.3", |
|
"@types/express": "^4.17.21", |
|
"@types/bcrypt": "^5.0.2", |
|
"@types/jsonwebtoken": "^9.0.5", |
|
"@types/cookie-parser": "^1.4.6", |
|
"@types/cors": "^2.8.17", |
|
"@types/node": "^20.10.5", |
|
"tsx": "^4.7.0" |
|
} |
|
}
|
|
|