-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.39 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
{
"name": "fastify-preact-ssr",
"version": "1.0.0",
"description": "Fastify server-side renders Preact to html and serves with a Preact client.js bundle for DOM hydration. Powered by Rollup.",
"main": "build/index.js",
"scripts": {
"nodemon": "nodemon build/server.js",
"rollup": "rollup --config --sourcemap --watch",
"dev": "npm run rollup & npm run nodemon",
"start": "node build/server.js",
"build": "rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebringrose/fastify-preact-ssr.git"
},
"keywords": [
"fastify",
"preact",
"ssr"
],
"author": "Seb Ringrose <sebringrose@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sebringrose/fastify-preact-ssr/issues"
},
"homepage": "https://github.com/sebringrose/fastify-preact-ssr#readme",
"dependencies": {
"@fastify/static": "^6.10.2",
"fastify": "^4.21.0",
"preact": "^10.16.0",
"preact-render-to-string": "^6.2.0",
"preact-router": "^4.1.2"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"nodemon": "^3.0.1",
"rollup": "^1.32.1"
}
}