forked from amoutonbrady/solid-hackernews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.28 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
{
"name": "vite-solid-hackernews",
"description": "A Solid Implementation of the Hacker News Example App with Vite",
"scripts": {
"dev": "jiti server",
"serve": "NODE_ENV=production jiti server",
"build": "pnpm build:client && pnpm build:server",
"build:client": "vite build --outDir dist/client",
"build:server": "vite build --ssr src/entry-server.tsx --outDir dist/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryansolid/solid-hackernews.git"
},
"keywords": [
"Solid",
"Hacker News",
"example",
"vite"
],
"author": "Ryan Carniato",
"contributors": [
{
"name": "Alexandre Mouton-Brady"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/amoutonbrady/solid-hackernews/issues"
},
"homepage": "https://github.com/amoutonbrady/solid-hackernews/",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"fastify": "^3.13.0",
"node-fetch": "^2.6.1",
"serve-static": "^1.14.1",
"solid-app-router": "0.0.32",
"solid-js": "0.24.12"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"jiti": "^1.6.0",
"rollup-route-manifest": "^1.0.0",
"vite": "^2.0.5",
"vite-plugin-solid": "^1.2.2"
}
}