-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 1.09 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
{
"name": "fastify-preact-htm-boilerplate",
"version": "1.0.0",
"description": "Quickly bootstrap your next web app with [Fastify](https://www.fastify.io), [Preact](https://preactjs.com/) and [htm](https://github.com/developit/htm) (great stack for quick web prototypes).",
"main": "src/server/server.js",
"scripts": {
"start": "fastify start --log-level info src/server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmammino/fastify-preact-htm-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lmammino/fastify-preact-htm-boilerplate/issues"
},
"homepage": "https://github.com/lmammino/fastify-preact-htm-boilerplate#readme",
"dependencies": {
"fastify": "^2.0.0-rc.6",
"fastify-cli": "^0.27.2",
"fastify-static": "^2.3.1"
},
"devDependencies": {
"eslint": "^5.14.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}