-
Notifications
You must be signed in to change notification settings - Fork 375
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "solid-start-monorepo",
"description": "Official starter for SolidJS",
"version": "0.2.0",
"author": "Ryan Carniato",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryansolid/solid-start"
},
"private": true,
"scripts": {
"clean": "pnpm run clean:root",
"clean:root": "rimraf node_modules",
"docs:dev": "vinxi dev",
"docs:build": "vinxi build",
"docs:start": "node ./.output/server/index.mjs",
"clean:test": "rimraf .tmp",
"build": "pnpm --filter @solidjs/start build",
"build:all": "pnpm run build && pnpm --filter './examples/*' --if-present build",
"install:playwright": "pnpm --filter solid-start-tests run install:playwright",
"test:all": "pnpm run clean:test && cross-env START_ADAPTER=solid-start-node npm run test",
"test": "pnpm run clean:test && pnpm --filter solid-start-tests test --",
"show:test-report": "pnpm --filter solid-start-tests show:test-report",
"bump": "node scripts/bump.js"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@cloudflare/kv-asset-handler": "^0.2.0",
"@kobalte/core": "^0.13.1",
"@kobalte/utils": "^0.9.0",
"@solidjs/meta": "^0.29.0",
"@solidjs/router": "^0.15.0",
"@solidjs/start": "workspace:*",
"@tailwindcss/typography": "^0.5.9",
"@vinxi/plugin-mdx": "^3.7.1",
"autoprefixer": "^10.4.19",
"citty": "^0.1.5",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"coveralls": "^3.1.1",
"debug": "^4.3.4",
"graphql": "^16.7.1",
"postcss": "^8.4.38",
"rimraf": "^3.0.2",
"solid-js": "^1.9.2",
"solid-mdx": "^0.0.7",
"solid-start-mdx": "workspace:*",
"solid-transition-group": "^0.2.3",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tinyglobby": "^0.2.2",
"tippy.js": "^6.3.7",
"turbo": "^1.10.7",
"typescript": "5.3.3",
"valibot": "~0.29.0",
"vinxi": "^0.4.3",
"vite": "^5.1.1"
},
"dependencies": {
"cross-env": "^7.0.3",
"wrangler": "3.22.1"
}
}