-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "fastify-nuxtjs",
"version": "1.0.1",
"description": "Vue server side rendering support for Fastify with Nuxt",
"main": "index.js",
"typings": "index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "nuxt build",
"build:prod": "cross-env NODE_ENV=production nuxt build",
"dev": "node example.js",
"prepublishOnly": "yarn test",
"release": "yarn test && HUSKY_SKIP_HOOKS=1 standard-version && git push --follow-tags && npm publish",
"serve": "npm run build:prod && cross-env NODE_ENV=production node example.js",
"test": "npm run build:prod && cross-env NODE_ENV=production tap test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gomah/fastify-nuxtjs.git"
},
"keywords": [
"fastify",
"vue",
"nuxt",
"ssr",
"server",
"side",
"rendering"
],
"author": "Thomas Marrec - @Gomah (https://gomah.fr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gomah/fastify-nuxtjs/issues"
},
"homepage": "https://github.com/gomah/fastify-nuxtjs#readme",
"peerDependencies": {
"nuxt": "^2"
},
"dependencies": {
"fastify-plugin": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@nuxt/types": "^2.15.8",
"@types/node": "^17.0.23",
"cross-env": "^7.0.2",
"fastify": "^3.27.4",
"nuxt": "^2.15.8",
"prettier": "^2.6.2",
"standard-version": "^9.3.2",
"tap": "^16.0.1",
"typescript": "^4.6.3"
}
}