-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "saleor-example-slack-app",
"version": "1.0.0",
"scripts": {
"build": "pnpm generate && next build",
"check-types": "tsc --noEmit",
"dev": "pnpm generate && NODE_OPTIONS='--inspect' next dev",
"fetch-schema": "curl https://raw.githubusercontent.com/saleor/saleor/${npm_package_saleor_schemaVersion}/saleor/graphql/schema.graphql > graphql/schema.graphql",
"generate": "graphql-codegen",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start": "next start"
},
"dependencies": {
"@saleor/app-sdk": "^0.50.1",
"@saleor/macaw-ui": "1.1.5",
"@urql/exchange-auth": "^2.1.4",
"graphql": "16.7.1",
"graphql-tag": "^2.12.6",
"next": "14.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"urql": "^4.0.4",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-codegen/schema-ast": "4.0.2",
"@graphql-codegen/typed-document-node": "5.0.5",
"@graphql-codegen/typescript": "4.0.5",
"@graphql-codegen/typescript-operations": "4.1.3",
"@graphql-codegen/typescript-urql": "4.0.0",
"@graphql-typed-document-node/core": "3.2.0",
"@types/react": "18.2.5",
"@types/react-dom": "18.2.5",
"typescript": "5.5.3"
},
"private": true,
"saleor": {
"schemaVersion": "3.10"
},
"type": "module"
}