-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.1 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "project-starter-full-stack",
"version": "1.0.0",
"private": true,
"description": "Full Stack Syetm Project Starter",
"author": "mahmoud-bebars",
"license": "UNLICENSED",
"scripts": {
"install:all": "npm install && npm run install:backend && npm run install:frontend",
"install:backend": "cd backend && npm install",
"install:frontend": "cd frontend && npm install",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"typecheck:backend": "cd backend && npm run typecheck",
"typecheck:frontend": "cd frontend && npm run typecheck",
"db:generate": "cd backend && npx prisma generate",
"db:migrate": "cd backend && npx prisma migrate dev",
"db:deploy": "cd backend && npx prisma migrate deploy",
"db:seed": "cd backend && npx tsx prisma/seed.ts",
"db:studio": "cd backend && npx prisma studio",
"db:reset": "cd backend && npx prisma migrate reset"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}