forked from un/inbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 3.85 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
{
"name": "@u22n/inbox-monorepo",
"private": "true",
"version": "0.0.1",
"description": "email + chat communications platform",
"scripts": {
"format": "prettier . --write",
"check:format": "prettier . --check",
"check:types": "dotenv -e .env.local -- turbo run check --filter=!@u22n/web-app --cache-dir=.turbo",
"check:lint": "eslint .",
"check": "pnpm check:format && pnpm check:lint && pnpm check:types",
"build:all": "dotenv -e .env.local -- turbo run build --filter=!@u22n/web-app --cache-dir=.turbo",
"build": "pnpm run -r build",
"build:ee": "pnpm run -r ee:build",
"build:web": "pnpm --filter=@u22n/web build",
"build:web-app": "pnpm --filter=@u22n/web-app 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: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:web-app": "pnpm --filter=@u22n/web-app 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: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 .nuxt -o -name .nitro -o -name .output -o -name .turbo -o -name dist -type d -prune | xargs rm -rf",
"dev": "dotenv -e .env.local -- turbo run dev",
"dev:next": "dotenv -e .env.local -- turbo run dev --filter=!@u22n/web-app",
"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: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",
"dev:r": "infisical run --env=remote -- turbo run dev",
"dev:next:r": "infisical run --env=remote -- turbo run dev --filter=!@u22n/web-app",
"db:push:r": "infisical run --env=remote -- pnpm --dir packages/database db:push:r",
"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:check:r": "infisical run --env=remote -- turbo run db:generate",
"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",
"prepare": "husky"
},
"keywords": [],
"author": "Omar McAdam - @McPizza0",
"license": "AGPLv3",
"devDependencies": {
"@nuxt/eslint-config": "^0.3.13",
"@types/node": "^20.14.6",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"turbo": "^1.13.4",
"typescript": "5.5.2"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"packageManager": "[email protected]"
}