forked from Shopify/function-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 731 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "function-examples",
"version": "1.0.0",
"type": "module",
"devDependencies": {
"@iarna/toml": "^2.2.5",
"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 workspaces run test run",
"test-ts": "yarn expand-liquid typescript && yarn workspaces run test run"
},
"private": true,
"workspaces": [
"*/javascript/**"
]
}