This repository was archived by the owner on Jul 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.34 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "todor",
"private": true,
"version": "1.0.0",
"repository": "https://github.com/revisionapp/revisio.git",
"author": "wyatt <profwyattb@gmail.com>",
"license": "MIT",
"packageManager": "yarn@3.1.1",
"scripts": {
"server": "yarn workspace @todor/backend dev",
"server-build": "yarn packages-build && yarn workspace @todor/backend build",
"server-start": "yarn workspace @todor/backend start",
"client": "yarn workspace @todor/frontend dev",
"client-build": "yarn packages-build && yarn workspace @todor/frontend build",
"client-start": "yarn workspace @todor/frontend start",
"db:generate": "yarn prisma generate",
"db:migrate-dev": "yarn prisma migrate dev",
"db:migrate-prod": "yarn prisma migrate deploy",
"packages-build": "yarn preconstruct build",
"docker-start": "yarn db:migrate-prod && yarn server-start",
"heroku-postbuild": "yarn db:generate && yarn db:migrate-prod && yarn server-build"
},
"workspaces": [
"packages/*",
"apps/*"
],
"preconstruct": {
"packages": [
"packages/*"
]
},
"dependencies": {
"@prisma/client": "^3.9.1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@faker-js/faker": "^6.0.0-alpha.5",
"@preconstruct/cli": "^2.1.5",
"prettier": "^2.5.1",
"prisma": "^3.9.1"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}