-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.33 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
87
88
89
90
91
{
"name": "fastify-shopify-graphql-proxy",
"author": "A-J Roos <asjas@hey.com>",
"version": "4.0.0",
"description": "Fastify plugin to proxy requests to the Shopify GraphQL API.",
"license": "Hippocratic-3.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"module": "./dist/index.mjs",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --sourcemap --format esm,cjs",
"clean": "rimraf dist/ coverage/",
"test": "vitest run",
"test:w": "vitest watch",
"coverage": "c8 --reporter=lcov vitest run --coverage",
"check-types": "tsc",
"prettier": "prettier --cache \"**/**/*.+(json|ts)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "npm-run-all --parallel check-types check-format build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"dependencies": {
"@fastify/reply-from": "9.4.0",
"fastify": "4.24.3"
},
"devDependencies": {
"@fastify/cookie": "9.1.0",
"@fastify/session": "10.5.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@size-limit/preset-small-lib": "^10.0.0",
"@types/node": "20.9.0",
"@vitest/coverage-c8": "0.33.0",
"c8": "8.0.1",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"size-limit": "^10.0.0",
"tsup": "7.2.0",
"typescript": "5.2.2",
"vite": "4.5.0",
"vitest": "0.34.6"
},
"husky": {
"hooks": {
"pre-commit": "npm run check-types && lint-staged && npm run build"
}
},
"lint-staged": {
"**/**/*.+(ts)": [
"prettier --write",
"git add"
]
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "35 KB"
},
{
"path": "dist/index.mjs",
"limit": "20 KB"
}
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"keywords": [
"fastify",
"fastify-plugin",
"shopify",
"shopify-graphql-proxy"
],
"homepage": "https://github.com/Asjas/fastify-shopify-graphql-proxy#README.md",
"bugs": {
"url": "https://github.com/Asjas/fastify-shopify-graphql-proxy/issues",
"email": "asjas@hey.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Asjas/fastify-shopify-graphql-proxy.git"
}
}