forked from solidjs/solid-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.8 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
{
"name": "solid-start-monorepo",
"description": "Official starter for SolidJS",
"version": "0.1.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",
"publish:release": "lerna publish",
"docs:dev": "solid-start dev",
"docs:build": "solid-start build",
"docs:start": "solid-start start",
"clean:test": "rimraf .tmp",
"build:all": "pnpm run -r --if-present build",
"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 --",
"bump": "node scripts/bump.cjs"
},
"devDependencies": {
"@cloudflare/kv-asset-handler": "^0.2.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@solidjs/meta": "^0.28.0",
"@solidjs/router": "^0.6.0",
"@tailwindcss/typography": "^0.5.7",
"@trpc/client": "^9.27.4",
"@trpc/server": "^9.27.4",
"coveralls": "^3.1.1",
"debug": "^4.3.4",
"fast-glob": "^3.2.12",
"graphql": "^16.6.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"solid-js": "^1.6.2",
"solid-mdx": "^0.0.6",
"solid-start": "workspace:*",
"solid-start-cloudflare-workers": "workspace:^0.2.2",
"solid-start-mdx": "workspace:*",
"solid-start-netlify": "workspace:*",
"solid-start-node": "workspace:*",
"tailwindcss": "^3.2.0",
"tippy.js": "^6.3.7",
"turbo": "^1.5.6",
"typescript": "4.7.4",
"undici": "^5.11.0",
"vite": "^3.1.8",
"zod": "^3.19.1"
},
"dependencies": {
"cross-env": "^7.0.3"
}
}