forked from fastify/fastify-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.65 KB
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
{
"name": "fastify-nextjs",
"version": "5.3.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 build:prod && standard && cross-env NODE_ENV=production tap test.js && npm run typescript",
"typescript": "tsc --project ./tsconfig.json"
},
"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"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"under-pressure": "^5.4.0"
},
"devDependencies": {
"@types/node": "^14.11.8",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"cross-env": "^7.0.2",
"fastify": "^3.6.0",
"next": "^10.0.6",
"proxyquire": "^2.1.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sinon": "^10.0.0",
"standard": "^16.0.1",
"tap": "^14.10.8",
"typescript": "^4.0.3"
}
}