-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 936 Bytes
/
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
{
"name": "shopify-app-nuxt",
"type": "module",
"private": true,
"scripts": {
"build:app": "pnpm run -C app build",
"build": "pnpm run codegen && shopify app build",
"dev:app": "pnpm run -C app dev",
"dev:codegen": "pnpm run codegen:graphql --watch",
"dev": "shopify app dev",
"generate": "shopify app generate",
"config:link": "shopify app config link",
"config:use": "shopify app config use",
"deploy": "shopify app deploy",
"env": "shopify app env",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint --fix . ",
"shopify": "shopify",
"codegen": "pnpm run \"/^codegen:.*/\"",
"codegen:graphql": "graphql-codegen"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@shopify/api-codegen-preset": "^1.1.1",
"@types/node": "^20.16.11",
"eslint": "^9.12.0",
"openapi-typescript": "^7.4.1",
"typescript": "^5.6.3"
}
}