-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
143 lines (143 loc) · 4.71 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@ts-ghost/remix-ghost-stack",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "run-s build:*",
"build:remix": "remix vite:build",
"dev": "run-p dev:*",
"dev:remix": "remix vite:dev",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma generate && prisma migrate deploy && prisma db seed",
"start": "NODE_ENV=production remix-serve ./build/server/index.js",
"start:mocks": "NODE_ENV=production MOCKS=true remix-serve ./build/server/index.js",
"test": "vitest",
"test:e2e:dev": "playwright test",
"test:e2e:install": "npx playwright install chromium --with-deps",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env CI=true playwright test",
"typecheck": "tsc -b",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"email:dev": "email dev",
"stripe:dev": "stripe listen --forward-to http://localhost:3000/webhooks/stripe"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@epic-web/cachified": "^4.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@markdoc/markdoc": "^0.4.0",
"@playwright/test": "^1.41.2",
"@prisma/client": "^5.10.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "^0.0.14",
"@react-email/render": "^0.0.12",
"@remix-run/node": "^2.7.2",
"@remix-run/react": "^2.7.2",
"@remix-run/serve": "^2.7.2",
"@remix-run/server-runtime": "^2.7.2",
"@sendgrid/mail": "^8.1.1",
"@t3-oss/env-core": "^0.9.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@ts-ghost/admin-api": "^4.0.1",
"@ts-ghost/content-api": "^4.0.11",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.1",
"domain-functions": "^2.5.5",
"dotenv": "^16.4.5",
"isbot": "^5.1.0",
"lru-cache": "^10.2.0",
"lucide-react": "^0.336.0",
"node-html-markdown": "^1.3.0",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-email": "2.0.0",
"rehype": "^13.0.1",
"rehype-prism-plus": "^2.0.0",
"remix-auth": "^3.6.0",
"remix-auth-otp": "^2.3.3",
"remix-utils": "^7.5.0",
"stripe": "^14.17.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@remix-run/dev": "^2.7.2",
"@remix-run/eslint-config": "^2.7.2",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/bcryptjs": "^2.4.6",
"@types/cookie": "^0.6.0",
"@types/crypto-js": "^4.2.2",
"@types/eslint": "^8.56.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.19",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^1.3.1",
"autoprefixer": "^10.4.17",
"binode": "^1.0.5",
"c8": "^9.1.0",
"cookie": "^0.6.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.14.3",
"happy-dom": "^13.4.1",
"is-buffer": "^2.0.5",
"msw": "^2.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"postcss-load-config": "^5.0.0",
"prettier": "3.2.5",
"prisma": "^5.10.2",
"schema-dts": "^1.1.2",
"start-server-and-test": "^2.0.3",
"stripe-event-types": "^3.1.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.3.1"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}