-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "fastify-react-views",
"version": "1.0.8",
"description": "This is a Fastify view engine which renders React components on server. It renders static markup and does not support mounting those views on the client.",
"main": "dist/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muturgan/fastify-react-views.git"
},
"keywords": [
"fastify",
"view engine",
"react"
],
"author": "Andrey Sakharov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/muturgan/fastify-react-views/issues"
},
"homepage": "https://github.com/muturgan/fastify-react-views#readme",
"engines": {
"node": "^12.16.3",
"npm": "^6.14.4"
},
"dependencies": {
"fastify-plugin": "^1.6.1",
"hashlru": "^2.3.0",
"simple-react-viewengine": "^1.0.3"
},
"devDependencies": {
"@types/node": "^12.12.37",
"fastify": "^2.14.0",
"rimraf": "^3.0.2",
"tslint": "^5.20.1",
"typescript": "^3.8.3"
}
}