-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "web",
"version": "1.1.0",
"private": true,
"author": {
"name": "BuildTheEarth Development",
"url": "https://buildtheearth.net/contact",
"email": "development@buildtheearth.net"
},
"license": "MIT",
"scripts": {
"build": "turbo build",
"build:api": "turbo build --filter=api...",
"build:frontend": "turbo build --filter=frontend...",
"clean": "turbo clean",
"start": "turbo start",
"dev": "turbo dev",
"lint": "turbo lint",
"prettier": "turbo prettier --ui=stream",
"db:generate": "turbo db:generate",
"db:studio": "yarn workspace @repo/db db:studio",
"db:migrate": "yarn workspace api db:migrate",
"git:pull": "git pull && yarn install && yarn run db:generate",
"ws": "yarn workspace"
},
"devDependencies": {
"@repo/prettier-config": "*",
"@repo/typescript-config": "*",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"turbo": "^2.5.4"
},
"workspaces": [
"apps/*",
"packages/*"
],
"resolutions": {
"prosemirror-model": "1.25.0",
"prosemirror-transform": "1.10.2",
"prosemirror-view": "1.39.1"
},
"packageManager": "yarn@4.9.1+sha512.f95ce356460e05be48d66401c1ae64ef84d163dd689964962c6888a9810865e39097a5e9de748876c2e0bf89b232d583c33982773e9903ae7a76257270986538",
"prettier": "@repo/prettier-config"
}