forked from solidjs/solid-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.82 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
{
"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": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@solidjs/meta": "^0.28.2",
"@solidjs/router": "^0.8.2",
"@tailwindcss/typography": "^0.5.9",
"@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": "^3.10.0",
"semver": "^7.5.1",
"solid-js": "^1.6.11",
"solid-mdx": "^0.0.6",
"solid-start": "workspace:*",
"solid-start-cloudflare-workers": "workspace:*",
"solid-start-mdx": "workspace:*",
"solid-start-netlify": "workspace:*",
"solid-start-node": "workspace:*",
"tailwindcss": "^3.2.4",
"tippy.js": "^6.3.7",
"turbo": "^1.7.0",
"typescript": "4.7.4",
"undici": "^5.15.1",
"vite": "^4.1.4",
"zod": "^3.20.2"
},
"dependencies": {
"cross-env": "^7.0.3"
}
}