-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
{
"name": "@dangreaves/gatsby-adapter-aws",
"version": "2.4.0",
"description": "Gatsby adapter for AWS",
"homepage": "https://github.com/dangreaves/gatsby-adapter-aws#readme",
"bugs": {
"url": "https://github.com/dangreaves/gatsby-adapter-aws/issues"
},
"repository": "dangreaves/gatsby-adapter-aws",
"license": "MIT",
"type": "module",
"exports": {
"./cdk": "./dist/cdk/index.js",
"./adapter": "./dist/adapter/index.js"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"lint": "eslint .",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"build": "tsup && cp -r src/assets dist/",
"build:examples": "for i in basic gatsby-functions ssr; do npm run build --workspace $i; done",
"clean": "npm run clean:package && npm run clean:examples",
"clean:package": "rm -rf dist",
"clean:examples": "for i in basic gatsby-functions ssr; do (cd examples/$i && rm -rf .aws public .cache); done",
"prepublishOnly": "npm run clean && npm run build",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {
"esbuild": "^0.23.0",
"fs-extra": "^11.2.0",
"mime": "^4.0.1",
"minimatch": "^9.0.3",
"nanoid": "^5.0.6"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@types/aws-cloudfront-function": "^1.0.4",
"@types/aws-lambda": "^8.10.133",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"all-contributors-cli": "^6.26.1",
"eslint": "^8.57.0",
"gatsby": "^5.13.3",
"husky": "^9.0.7",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"tsc-files": "^1.1.4",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.0",
"vitest": "^1.2.2"
},
"peerDependencies": {
"aws-cdk-lib": "^2.124.0",
"constructs": "^10.3.0",
"cookie": "^0.6.0",
"express": "^4.21.0"
},
"workspaces": [
"examples/*"
]
}