-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.47 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
{
"name": "@blog/root",
"scripts": {
"clean": "find ./ -name node_modules -type d -exec rm -rf {} +",
"preinstall": "npx only-allow pnpm",
"frontend:dev": "pnpm -F @blog/frontend run dev",
"backend:dev": "pnpm -F @blog/backend run dev",
"opt-imgs": "pnpm -F @blog/frontend run opt-imgs",
"test": "vitest",
"coverage": "vitest run --coverage",
"codegen": "playwright codegen",
"e2e": "playwright test",
"build": "pnpm -F @blog/frontend run build",
"preview": "pnpm -F @blog/frontend run preview",
"deploy": "pnpm -F @blog/frontend run deploy && pnpm -F @blog/backend run deploy"
},
"devDependencies": {
"@axe-core/playwright": "^4.7.3",
"@playwright/test": "^1.37.1",
"@supabase/supabase-js": "^2.33.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "^0.34.4",
"dotenv": "^16.3.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"prettier-plugin-glsl": "^0.1.2",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.4",
"vitest-environment-miniflare": "^2.14.1"
}
}