forked from netlify/gatsby-plugin-netlify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.92 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
{
"name": "gatsby-plugin-netlify",
"description": "A Gatsby plugin for sites deployed to Netlify",
"version": "4.2.0",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/netlify/gatsby-plugin-netlify/issues"
},
"contributors": [
{
"name": "Nathanael Beisiegel",
"email": "[email protected]"
}
],
"dependencies": {
"@babel/runtime": "^7.16.7",
"fs-extra": "^10.0.0",
"gatsby-core-utils": "^3.5.2",
"kebab-hash": "^0.1.2",
"lodash": "^4.17.21",
"webpack-assets-manifest": "^5.0.6"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/eslint-plugin": "^7.16.5",
"@netlify/eslint-config-node": "^5.1.8",
"@types/jest": "^27.4.1",
"babel-preset-gatsby-package": "^2.5.0",
"cross-env": "^7.0.3",
"gatsby": "^4.5.3",
"gatsby-plugin-utils": "^3.0.0",
"jest": "^27.4.7",
"prettier": "^2.3.2",
"typescript": "^4.5.4"
},
"homepage": "https://github.com/netlify/gatsby-plugin-netlify#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"http/2-server-push",
"netlify"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"gatsby": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/netlify/gatsby-plugin-netlify.git"
},
"scripts": {
"build": "tsc && cd src/__tests__ && tsc",
"clean": "tsc --build --clean",
"prepare": "cross-env NODE_ENV=production npm run build",
"prepublishOnly": "npm run prepare",
"format": "npm run format:code && npm run format:other",
"format:code": "npm run lint -- --fix",
"format:other": "npm run prettier -- --write",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prettier": "prettier \"**/*.{md,css,scss,yaml,yml}\"",
"test": "jest",
"watch": "tsc --watch"
},
"engines": {
"node": ">=12.13.0"
}
}