-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"author": {
"email": "[email protected]",
"name": "Artyom Sokolov",
"url": "https://artyomsokolov.com"
},
"description": "Fastify and Next.js integration",
"devDependencies": {
"@types/eslint": "^7",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@types/react": "^17",
"@types/react-dom": "^17",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"axios": "^0.21.1",
"esbuild": "^0.12.9",
"esbuild-node-externals": "^1.3.0",
"eslint": "^7.29.0",
"fastify": "^3.18.0",
"fastify-plugin": "^3.0.0",
"fastify-static": "^4.2.2",
"jest": "^27.0.4",
"next": "^11.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"files": [
"dist"
],
"homepage": "https://github.com/applicazza/fastify-nextjs",
"keywords": [
"fastify",
"next",
"react",
"ssr"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@applicazza/fastify-nextjs",
"peerDependencies": {
"fastify": "*",
"fastify-static": "*",
"next": "*",
"react": "*",
"react-dom": "*"
},
"scripts": {
"build": "node scripts/build.js && tsc --project tsconfig.plugin.json --emitDeclarationOnly",
"test": "jest --coverage"
},
"types": "dist/index.d.ts",
"version": "0.2.0"
}