-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
87 lines (87 loc) · 4.29 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@u22n/inbox-monorepo",
"private": "true",
"version": "1.0.0",
"description": "email + chat communications platform",
"scripts": {
"format": "prettier . --write",
"check:format": "prettier . --check",
"check:types": "dotenv -e .env.local -- turbo run check --cache-dir=.turbo",
"check:lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore",
"check": "pnpm check:lint && pnpm check:types",
"fix": "eslint --fix . --ext .ts,.tsx --ignore-path .gitignore",
"start:all": "dotenv -e .env.local -- turbo run start",
"build:all": "dotenv -e .env.local -- turbo run build --cache-dir=.turbo",
"build": "pnpm run -r build",
"build:ee": "pnpm run -r ee:build",
"build:web": "pnpm --filter=@u22n/web build",
"build:mail-bridge": "pnpm --filter=@u22n/mail-bridge build",
"build:platform": "pnpm --filter=@u22n/platform build",
"build:storage": "pnpm --filter=@u22n/storage build",
"build:worker": "pnpm --filter=@u22n/worker build",
"build:ee:billing": "pnpm --filter=@uninbox-ee/billing ee:build",
"build:ee:command": "pnpm --filter=@uninbox-ee/command ee:build",
"start": "pnpm run -r start",
"start:ee": "pnpm run -r ee:start",
"start:web": "pnpm --filter=@u22n/web start",
"start:mail-bridge": "pnpm --filter=@u22n/mail-bridge start",
"start:platform": "pnpm --filter=@u22n/platform start",
"start:storage": "pnpm --filter=@u22n/storage start",
"start:worker": "pnpm --filter=@u22n/worker start",
"start:ee:billing": "pnpm --filter=@uninbox-ee/billing ee:start",
"start:ee:command": "pnpm --filter=@uninbox-ee/command ee:start",
"clean": "find . -name node_modules -o -name .next -o -name .output -o -name .turbo -o -name dist -type d -prune | xargs rm -rf",
"dev": "dotenv -e .env.local -- turbo run dev",
"docker:up": "docker compose --project-directory packages/local-docker up",
"docker:down": "docker compose --project-directory packages/local-docker down",
"docker:clean": "docker compose --project-directory packages/local-docker down -v",
"db:push": "dotenv -e .env.local -- pnpm --dir packages/database db:push",
"db:studio": "dotenv -e .env.local -- turbo run db:studio",
"db:generate": "dotenv -e .env.local -- turbo run db:generate",
"db:migrate": "dotenv -e .env.local -- turbo run db:migrate",
"db:up": "dotenv -e .env.local -- turbo run db:up",
"db:check": "dotenv -e .env.local -- turbo run db:generate",
"db:drop": "dotenv -e .env.local -- turbo run db:drop",
"start:all:r": "infisical run --env=remote -- turbo run start",
"dev:r": "infisical run --env=remote -- turbo run dev",
"stress:email": "dotenv -e .env.local -- pnpm --dir apps/mail-bridge stress:email",
"stress:email:r": "infisical run --env=remote -- pnpm --dir apps/mail-bridge stress:email",
"db:push:r": "infisical run --env=remote -- pnpm --dir packages/database db:push",
"db:studio:r": "infisical run --env=remote -- turbo run db:studio",
"db:generate:r": "infisical run --env=remote -- turbo run db:generate",
"db:up:r": "infisical run --env=remote -- turbo run db:up",
"db:drop:r": "infisical run --env=remote -- turbo run db:drop",
"ee:dev:r": "infisical run --env=remote -- turbo run ee:dev",
"ee:check": "infisical run --env=remote -- turbo run ee:check",
"ee:build:all": "dotenv -e .env.local -- turbo run ee:build --cache-dir=.turbo",
"mock:incoming-mail": "dotenv -e .env.local -- pnpm --dir apps/mail-bridge mock:incoming-mail",
"prepare": "husky",
"predev": "tsx predev.ts"
},
"keywords": [],
"author": "Omar McAdam - @McPizza0",
"license": "AGPLv3",
"devDependencies": {
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@u22n/eslint-plugin-custom": "workspace:^",
"@u22n/tsconfig": "^0.0.2",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.6",
"eslint-plugin-drizzle": "^0.2.3",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"prettier-plugin-sort-imports": "^1.8.6",
"prettier-plugin-tailwindcss": "^0.6.6",
"tsx": "^4.18.0",
"turbo": "^1.13.4",
"typescript": "5.6.2"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"packageManager": "pnpm@9.10.0"
}