-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 876 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "request-forms-platform",
"version": "1.0.0",
"private": true,
"description": "Full-stack request forms platform with React, Express, Prisma and PostgreSQL.",
"license": "MIT",
"scripts": {
"build": "npm run build:user && npm run build:admin",
"build:user": "npm --prefix apps/web run build",
"build:admin": "npm --prefix apps/admin run build",
"dev:backend": "npm --prefix apps/api run dev",
"dev:user": "npm --prefix apps/web run dev",
"dev:admin": "npm --prefix apps/admin run dev",
"test": "npm run test:api",
"test:api": "npm --prefix apps/api test",
"validate": "npm run prisma:validate && npm run test && npm run build",
"docker:build": "./scripts/build-images.sh",
"prisma:generate": "npm --prefix apps/api run prisma:generate",
"prisma:validate": "npm --prefix apps/api run prisma:validate"
}
}