forked from fastify/fastify-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.8 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
70
71
{
"name": "@bilhon/fastify-nextjs",
"version": "0.1.0",
"description": "React server side rendering support for Fastify with Next",
"main": "index.js",
"types": "types/index.d.ts",
"standard": {
"ignore": [
"*.jsx"
]
},
"scripts": {
"build": "next build",
"build:prod": "cross-env NODE_ENV=production next build",
"dev": "node examples/example.js",
"serve": "npm run build:prod && cross-env NODE_ENV=production node examples/example.js",
"lint": "standard",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "npm run build:prod && standard && cross-env NODE_ENV=production tap",
"test:typescript": "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 <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-nextjs/issues"
},
"homepage": "https://github.com/fastify/fastify-nextjs#readme",
"peerDependencies": {
"next": "12.x.x || 13.x.x"
},
"dependencies": {
"@fastify/under-pressure": "^9.0.1",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"@types/node": "^20.1.0",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"cross-env": "^7.0.3",
"fastify": "^5.0.0",
"next": "^13.4.3",
"pino": "^8.4.2",
"proxyquire": "^2.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sinon": "^17.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.31.0",
"undici": "^5.8.2"
},
"publishConfig": {
"access": "public"
}
}