-
Notifications
You must be signed in to change notification settings - Fork 656
/
package.json
40 lines (40 loc) · 1.33 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
{
"name": "react-email-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build --filter=!react-email-starter",
"dev": "turbo run dev --filter=!react-email-starter --parallel --concurrency 25",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"release": "turbo run build --filter=./packages/* --filter=!react-email-starter && pnpm changeset publish",
"canary:enter": "changeset pre enter canary",
"canary:exit": "changeset pre exit",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"lint": "turbo run lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch"
},
"devDependencies": {
"@changesets/cli": "2.27.8",
"@types/node": "18.18.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"eslint": "8.50.0",
"happy-dom": "12.2.2",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.6.6",
"tsconfig": "workspace:*",
"tsup": "8.2.4",
"turbo": "2.1.0",
"vite": "5.4.6",
"vitest": "2.0.5"
},
"packageManager": "pnpm@9.9.0",
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
}
}