-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
68 lines (68 loc) · 2 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
{
"name": "@wardpeet/gatsby-plugin-static-site",
"version": "0.3.0",
"description": "A plugin that disables client side routing for gatsby",
"main": "index.js",
"author": "Ward Peeters <ward@coding-tech.com>",
"keywords": [
"gatsby",
"gatsby-plugin",
"static-site"
],
"homepage": "https://github.com/wardpeet/gatsby-plugin-static-site",
"bugs": "https://github.com/wardpeet/gatsby-plugin-static-site/issues",
"repository": {
"url": "https://github.com/wardpeet/gatsby-plugin-static-site",
"type": "git"
},
"license": "MIT",
"peerDependencies": {
"gatsby": "^3.0.0"
},
"files": [
"gatsby-browser.js",
"gatsby-node.js",
"GatsbyStaticSitePlugin.js",
"index.js"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.0",
"babel-preset-gatsby-package": "1.4.0",
"cpy": "8.1.2",
"cross-env": "7.0.3",
"del": "6.0.0",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "2.11.3",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"execa": "5.0.0",
"globby": "11.0.3",
"make-dir": "3.1.0",
"noop-stream": "0.1.0",
"np": "7.5.0",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"pretty-bytes": "5.6.0"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"lint": "npm-run-all --parallel lint:*",
"lint:code": "eslint --ignore-path .gitignore --ext .js,.jsx .",
"lint:prettier": "npm run prettier -- --check",
"format": "npm-run-all --parallel format:*",
"format:code": "npm run lint:code -- --fix",
"format:prettier": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{md,css,yml,json}\"",
"test": "yarn lint && node scripts/e2e-test.js --silent"
},
"dependencies": {
"webpack": "^5.30.0"
}
}