forked from fastify/fastify-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.68 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
62
63
64
65
66
67
68
69
{
"name": "@fastify/nextjs",
"version": "8.0.0",
"description": "React server side rendering support for Fastify with Next",
"main": "index.js",
"engines": {
"node": ">=10"
},
"standard": {
"ignore": [
"*.jsx"
]
},
"scripts": {
"build": "next build",
"build:prod": "cross-env NODE_ENV=production next build",
"dev": "node example.js",
"serve": "npm run build:prod && cross-env NODE_ENV=production node example.js",
"test": "npm run test:types && npm run build:prod && standard && cross-env NODE_ENV=production tap test.js",
"test:types": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-nextjs.git"
},
"keywords": [
"fastify",
"react",
"next",
"ssr",
"server",
"side",
"rendering"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"contributors": [
"Simone Busoli <simone.busoli@nearform.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-nextjs/issues"
},
"homepage": "https://github.com/fastify/fastify-nextjs#readme",
"peerDependencies": {
"next": "9.x.x || 10.x.x || 11.x.x || 12.x.x"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"under-pressure": "^5.8.0"
},
"devDependencies": {
"@types/node": "^17.0.10",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"cross-env": "^7.0.3",
"fastify": "^3.27.0",
"next": "^12.0.8",
"proxyquire": "^2.1.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sinon": "^14.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.20.0"
},
"publishConfig": {
"access": "public"
}
}