-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.07 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.07 KB
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
{
"type": "module",
"name": "@phi-ag/solid-pages",
"version": "1.5.21",
"description": "Opinionated demo app running SolidStart on Cloudflare Pages",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/phi-ag/solid-pages.git"
},
"scripts": {
"dev": "vinxi dev --no-clear",
"build": "vinxi build",
"start": "wrangler pages dev ./dist",
"start:e2e": "wrangler pages dev --ip=0.0.0.0 --log-level=warn",
"typecheck": "tsc --noEmit",
"lint": "eslint --max-warnings 0 .",
"test": "vitest --run",
"test:dev": "vitest",
"test:coverage": "vitest --run --coverage",
"test:e2e": "playwright test",
"test:e2e:dev": "PWTEST_WATCH=1 playwright test",
"typegen": "wrangler types src/worker-configuration.d.ts",
"deploy": "wrangler pages deploy --branch main",
"deploy:production": "wrangler pages deploy --branch production",
"tail": "wrangler pages deployment tail --project-name solid-pages --environment preview",
"tail:production": "wrangler pages deployment tail --project-name solid-pages",
"format": "prettier --write \"**/*.{js,ts,tsx,json,css,yml,yaml,sql}\"",
"format:check": "prettier --check \"**/*.{js,ts,tsx,json,css,yml,yaml,sql}\"",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "wrangler d1 migrations apply solid-pages-preview --local",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@sentry/core": "10.47.0",
"@solidjs/router": "0.16.1",
"@solidjs/start": "1.3.2",
"class-variance-authority": "0.7.1",
"drizzle-orm": "0.45.1",
"lodash-es": "4.18.1",
"solid-js": "1.9.12",
"toucan-js": "4.1.1",
"uuid": "13.0.0",
"zod": "4.3.6"
},
"devDependencies": {
"@axe-core/playwright": "4.11.1",
"@eslint/js": "9.39.4",
"@playwright/test": "1.59.1",
"@tailwindcss/vite": "4.2.2",
"@testing-library/jest-dom": "6.9.1",
"@trivago/prettier-plugin-sort-imports": "6.0.2",
"@types/eslint-plugin-jsx-a11y": "6.10.1",
"@types/lodash-es": "4.17.12",
"@types/node": "25.5.2",
"@vitest/coverage-v8": "3.2.4",
"axe-core": "4.11.2",
"axe-html-reporter": "2.2.11",
"better-sqlite3": "12.8.0",
"drizzle-kit": "0.31.8",
"eslint": "9.39.4",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-solid": "0.14.5",
"fast-check": "4.6.0",
"globals": "17.4.0",
"lighthouse": "13.0.3",
"playwright-lighthouse": "4.0.0",
"prettier": "3.8.1",
"prettier-plugin-sql": "0.20.0",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwindcss": "4.2.2",
"typescript": "5.9.3",
"typescript-eslint": "8.58.0",
"vinxi": "0.5.11",
"vite": "6.4.2",
"vite-plugin-solid": "2.11.11",
"vitest": "3.2.4",
"wrangler": "4.45.4"
},
"engines": {
"node": "25.9.0"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}