-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.51 KB
/
package.json
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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "mfa-form-automator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": "true",
"workspaces": [
"apps/server",
"apps/web"
],
"scripts": {
"dev": "yarn --cwd apps/web dev & yarn --cwd apps/server start:dev & node apps/proxy.ts",
"format": "yarn workspaces run prettier . --write",
"lint": "yarn workspaces run lint",
"test": "yarn workspaces run test --passWithNoTests",
"tsc": "yarn workspaces run tsc -p tsconfig.json",
"migrate": "yarn --cwd apps/server prisma migrate dev",
"gen-client": "yarn --cwd apps/web openapi --input http://localhost:8080/api-json --output ./src/client --client axios",
"dev:db:up": "docker compose -f apps/server/docker-compose.db.yml up -d",
"dev:db:down": "docker compose -f apps/server/docker-compose.db.yml down",
"backend:docker:build": "docker compose -f apps/server/docker-compose.yml build",
"backend:docker:run": "docker compose -f apps/server/docker-compose.yml up -d",
"backend:docker:down": "docker compose -f apps/server/docker-compose.yml down"
},
"prisma": {
"seed": "ts-node apps/server/prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^20.8.2",
"@yarnpkg/cli": "^4.0.0-rc.51",
"@yarnpkg/core": "^4.0.0-rc.51",
"@yarnpkg/plugin-git": "^3.0.0-rc",
"@yarnpkg/plugin-workspace-tools": "^4.0.0-rc.51",
"husky": "^8.0.3"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}