This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "@robinmetral/gatsby-source-s3",
"description": "A Gatsby plugin to source objects and images from AWS S3",
"version": "0.0.0-semantically-released",
"main": "gatsby-node.js",
"author": "Robin Métral <robin@metral.ch>",
"repository": "https://github.com/robinmetral/gatsby-source-s3.git",
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"files": [
"gatsby-node.js"
],
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"cypress": "^9.2.1",
"@tsconfig/node14": "^1.0.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gatsby": "^4.5.2",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"start-server-and-test": "^1.14.0",
"typescript": "^4.5.4"
},
"scripts": {
"build": "tsc",
"lint": "eslint '*/**/*.{ts,tsx}'",
"prestart": "yarn build && npm pack && (cd examples/gatsby-starter-source-s3 && yarn add ../../robinmetral-gatsby-source-s3-0.0.0-semantically-released.tgz)",
"start": "(cd examples/gatsby-starter-source-s3 && yarn build && yarn serve)",
"test": "cypress run",
"e2e": "start-server-and-test http://localhost:9000",
"prepare": "husky install"
},
"dependencies": {
"aws-sdk": "^2.1058.0",
"gatsby-source-filesystem": "^4.5.1"
},
"peerDependencies": {
"gatsby": "^4.5.2"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"preset": "conventionalcommits"
}
}