-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.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
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
83
84
85
86
{
"name": "gatsby-plugin-fix-fouc",
"version": "1.1.1",
"description": "Gatsby Plugin Fix FOUC is a plugin that solves flicker of unstyled content",
"main": "index.js",
"types": "index.d.ts",
"files": [
"LICENSE",
"*.md",
"gatsby-*.js",
"index.js",
"index.d.ts"
],
"scripts": {
"e2e": "yarn build:e2e && cd e2e && yarn e2e:run",
"e2e:open": "yarn build:e2e && cd e2e && yarn e2e:open",
"build": "yarn build:plugin && yarn build:emit",
"build:e2e": "babel src/gatsby-ssr.ts src/index.ts --out-dir e2e/plugins/gatsby-plugin-fix-fouc --extensions .ts",
"build:plugin": "babel src --out-dir . --extensions .ts",
"build:emit": "tsc -p tsconfig.emitDeclarations.json",
"lint": "eslint --cache",
"lint:fix": "yarn lint --fix",
"format": "prettier --cache --write .",
"typecheck": "tsc -p . --noEmit && tsc -p ./e2e/tsconfig.json --noEmit",
"test": "jest",
"preinstall": "npx only-allow yarn",
"prepare": "husky && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bicstone/gatsby-plugin-fix-fouc.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"react",
"fouc",
"ssr",
"ssg",
"javascript",
"hacktoberfest"
],
"author": "Oishi Takanori",
"license": "MIT",
"bugs": {
"url": "https://github.com/bicstone/gatsby-plugin-fix-fouc/issues"
},
"homepage": "https://github.com/bicstone/gatsby-plugin-fix-fouc#readme",
"packageManager": "[email protected]",
"peerDependencies": {
"gatsby": "^3 || ^4 || ^5"
},
"devDependencies": {
"@babel/cli": "7.25.7",
"@babel/core": "7.25.8",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.13",
"@types/node": "20.16.11",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"all-contributors-cli": "6.26.1",
"babel-preset-gatsby-package": "3.13.1",
"eslint": "9.12.0",
"eslint-config-love": "87.0.0",
"gatsby": "5.13.7",
"gatsby-plugin-utils": "4.13.1",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"sideEffects": false,
"workspaces": [
"e2e"
],
"volta": {
"node": "20.18.0",
"yarn": "4.5.0"
}
}