forked from harlan-zw/nuxt-delay-hydration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.49 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.49 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nuxt-delay-hydration",
"version": "0.2.4",
"main": "dist/index.js",
"description": "Improve your Nuxt.js Google Ligthouse score by delaying hydration ⚡️",
"keywords": [
"nuxt",
"nuxt-module",
"hydration",
"lighthouse",
"page speed",
"performance"
],
"homepage": "https://github.com/harlan-zw/nuxt-delay-hydration",
"bugs": "https://github.com/harlan-zw/nuxt-delay-hydration/issues",
"repository": {
"type": "git",
"url": "https://github.com/harlan-zw/nuxt-delay-hydration"
},
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
"files": [
"dist",
"scripts",
".runtime"
],
"scripts": {
"cache:clear": "rm -rf dist && rm -rf node_modules/.cache && rm -rf test/fixtures/pokemon/node_modules && rm -rf test/fixtures/pokemon/.nuxt",
"build": "yarn run cache:clear && tsup src/index.ts --dts && mkdist --src src/components --dist dist/components --format=cjs --ext=js && mkdist --src src/runtime --dist dist/runtime --ext=js",
"dev:manual": "nuxt test/fixtures/manual",
"build:manual": "nuxt generate test/fixtures/manual",
"start:manual": "cross-env NODE_ENV=production && nuxt start test/fixtures/manual",
"up:manual": "yarn run build && yarn run build:manual && yarn run start:manual",
"dev:countries": "nuxt test/fixtures/countries",
"build:countries": "nuxt generate test/fixtures/countries",
"start:countries": "cross-env NODE_ENV=production && nuxt start test/fixtures/countries",
"up:countries": "yarn run build && yarn run build:countries && yarn run start:countries",
"dev:pokemon": "nuxt test/fixtures/pokemon",
"build:pokemon": "cross-env NODE_ENV=development && rm -rf test/fixtures/pokemon/node_modules/.cache && nuxt build test/fixtures/pokemon && nuxt generate test/fixtures/pokemon",
"start:pokemon": "cross-env NODE_ENV=development && nuxt start test/fixtures/pokemon",
"up:pokemon": "yarn run build && yarn run build:pokemon && yarn run start:pokemon",
"dev:vite": "nuxt test/fixtures/vite",
"build:vite": "cross-env NODE_ENV=development && rm -rf test/fixtures/vite/node_modules/.cache && nuxt build test/fixtures/vite && nuxt generate test/fixtures/vite",
"start:vite": "cross-env NODE_ENV=development && nuxt start test/fixtures/vite",
"up:vite": "yarn run build && yarn run build:vite && yarn run start:vite",
"lint": "eslint --fix --ext .ts,.js,.vue .",
"release": "dotenv release-it",
"test": "jest --verbose ",
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"devDependencies": {
"@antfu/eslint-config": "^0.7.0",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@sumup/performance-observer": "^1.0.2",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"chrome-launcher": "^0.14.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^4.0.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.0.6",
"lighthouse": "^8.3.0",
"mkdist": "^0.3.3",
"nuxt": "^2.15.8",
"nuxt-build-optimisations": "^1.0.6",
"nuxt-vite": "^0.2.1",
"nuxt-windicss": "^1.2.3",
"release-it": "^14.11.5",
"tsup": "^4.14.0",
"web-vitals": "^2.1.0"
},
"dependencies": {
"@nuxt/kit": "^0.6.4",
"defu": "^5.0.0",
"lodash": "^4.17.21",
"upath": "^2.0.1",
"vue-lazy-hydration": "^2.0.0-beta.4"
}
}