-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.15 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.15 KB
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
{
"name": "function-examples",
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@shopify/toml-patch": "^0.3.0",
"dayjs": "^1.11.11",
"fast-glob": "^3.2.11",
"liquidjs": "^9.37.0",
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/typescript": "^3.0.2",
"@graphql-codegen/typescript-operations": "^3.0.2",
"graphql": "^16.6.0"
},
"scripts": {
"expand-liquid": "node ./util/expand-liquid.js",
"typegen": "yarn workspaces run graphql-code-generator --config package.json",
"test-js": "yarn expand-liquid vanilla-js && yarn && yarn typegen && yarn workspaces run test run",
"test-ts": "yarn expand-liquid typescript && yarn && yarn typegen && yarn workspaces run test run",
"update-api-version": "node ./util/update-api-version.js",
"configure-extension-directories": "node ./util/configure-extension-directories.js",
"update-schemas": "node ./util/update-schemas.js",
"update-all": "yarn update-api-version && yarn configure-extension-directories && yarn expand-liquid && yarn update-schemas"
},
"private": true,
"workspaces": [
"*/javascript/**"
]
}