-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.44 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.44 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
{
"name": "@wavechat/root",
"version": "1.0.0",
"description": "A real time social media platform",
"main": "index.js",
"license": "MIT",
"author": "FourLineCode",
"homepage": "https://github.com/FourLineCode/wavechat#readme",
"packageManager": "pnpm@6.29.1",
"scripts": {
"dev": "pnpm dc:up && turbo run dev",
"build": "turbo run build",
"start": "pnpm dc:up && turbo run start",
"deploy": "pnpm build && pnpm start",
"dc:up": "docker compose up -d",
"dc:down": "docker compose down",
"dc:down:volume": "docker compose down --volumes",
"db:init": "pnpm db:gen && pnpm --dir api db:init",
"db:studio": "pnpm --dir api studio",
"db:gen": "pnpm --dir api generate",
"db:migrate": "pnpm --dir api migrate",
"db:seed": "pnpm --dir api seed",
"codegen": "pnpm --dir web codegen",
"codegen:watch": "pnpm --dir web codegen:watch",
"clean": "turbo run clean && rm -rf node_modules",
"clean:cache": "turbo run clean:cache && rm -rf ./node_modules/.cache/turbo",
"reset": "pnpm clean && pnpm install",
"typecheck": "turbo run typecheck",
"format": "prettier --write '**/*.{js,jsx,json,ts,tsx,md,html,css,yml,yaml}'",
"aws:init": "awslocal --endpoint-url=http://localhost:4566 s3 mb s3://wc-media && awslocal --endpoint-url=http://localhost:4566 s3api put-bucket-acl --bucket wc-media --acl public-read"
},
"devDependencies": {
"prettier": "^2.5.1",
"turbo": "^1.1.6"
}
}