forked from saleor/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) 路 4.28 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) 路 4.28 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"$schema": "https://json.schemastore.org/package.json",
"name": "saleor-app-payment-np-atobarai",
"version": "1.4.11",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check-types": "tsc",
"deploy": "tsx --env-file-if-exists=.env ./scripts/deploy.ts",
"dev": "NODE_OPTIONS='--inspect' next dev",
"generate": "pnpm run /generate:.*/",
"generate:app-graphql-types": "graphql-codegen",
"generate:app-webhooks-types": "tsx ./scripts/generate-app-webhooks-types.ts --json-schema-version=${npm_package_config_saleor_schemaVersion}",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"migrate": "pnpm tsx --env-file-if-exists=.env ./scripts/run-webhooks-migration.ts",
"migrate:dry-run": "pnpm tsx --env-file-if-exists=.env ./scripts/run-webhooks-migration.ts --dry-run",
"rotate-secret-key": "pnpm tsx --env-file-if-exists=.env ./scripts/rotate-secret-key.ts",
"rotate-secret-key:dry-run": "pnpm tsx --env-file-if-exists=.env ./scripts/rotate-secret-key.ts --dry-run",
"setup-dynamodb": "tsx ./scripts/setup-dynamodb.ts",
"test": "pnpm run test:unit",
"test:ci": "pnpm run test:unit --coverage",
"test:unit": "vitest --project=unit"
},
"config": {
"saleor": {
"//": "Preserved to make json-schema working. TODO Move it to monorepo root.",
"schemaVersion": "3.22"
}
},
"dependencies": {
"@aws-sdk/client-dynamodb": "catalog:",
"@aws-sdk/lib-dynamodb": "catalog:",
"@hookform/resolvers": "catalog:",
"@opentelemetry/api": "catalog:",
"@opentelemetry/api-logs": "catalog:",
"@opentelemetry/instrumentation": "catalog:",
"@opentelemetry/resources": "catalog:",
"@opentelemetry/sdk-logs": "catalog:",
"@opentelemetry/sdk-trace-node": "catalog:",
"@opentelemetry/semantic-conventions": "catalog:",
"@saleor/app-sdk": "link:../../node_modules/@saleor/app-sdk",
"@saleor/apps-domain": "workspace:*",
"@saleor/apps-logger": "workspace:*",
"@saleor/apps-otel": "workspace:*",
"@saleor/apps-shared": "workspace:*",
"@saleor/apps-trpc": "workspace:*",
"@saleor/apps-ui": "workspace:*",
"@saleor/dynamo-config-repository": "workspace:*",
"@saleor/errors": "workspace:",
"@saleor/macaw-ui": "catalog:",
"@saleor/react-hook-form-macaw": "workspace:*",
"@saleor/sentry-utils": "workspace:*",
"@sentry/cli": "catalog:",
"@sentry/nextjs": "catalog:",
"@t3-oss/env-nextjs": "catalog:",
"@trpc/client": "catalog:",
"@trpc/next": "catalog:",
"@trpc/react-query": "catalog:",
"@trpc/server": "catalog:",
"@vercel/oidc-aws-credentials-provider": "catalog:",
"@vercel/otel": "catalog:",
"dynamodb-toolbox": "catalog:",
"jp-zipcode-lookup": "0.3.5",
"lucide-react": "catalog:",
"modern-errors": "catalog:",
"modern-errors-serialize": "catalog:",
"neverthrow": "catalog:",
"next": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-hook-form": "catalog:",
"urql": "catalog:",
"usehooks-ts": "catalog:",
"zod": "catalog:",
"zod-validation-error": "catalog:"
},
"devDependencies": {
"@graphql-codegen/cli": "catalog:",
"@graphql-codegen/introspection": "catalog:",
"@graphql-codegen/typed-document-node": "catalog:",
"@graphql-codegen/typescript-operations": "catalog:",
"@graphql-codegen/typescript-urql": "catalog:",
"@graphql-typed-document-node/core": "catalog:",
"@saleor/eslint-config-apps": "workspace:*",
"@saleor/typescript-config-apps": "workspace:*",
"@saleor/webhook-utils": "workspace:*",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.2.0",
"@total-typescript/ts-reset": "0.6.1",
"@types/node": "catalog:",
"@types/react": "18.2.5",
"@types/react-dom": "18.2.5",
"@vitejs/plugin-react": "catalog:",
"@vitest/coverage-v8": "catalog:",
"aws-sdk-client-mock": "4.0.1",
"eslint": "catalog:",
"eslint-plugin-n": "catalog:",
"graphql": "catalog:",
"graphql-config": "5.0.3",
"graphql-tag": "catalog:",
"json-schema-to-typescript": "catalog:",
"next-test-api-route-handler": "catalog:",
"ts-node": "10.9.2",
"tsx": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vite-tsconfig-paths": "catalog:",
"vitest": "catalog:"
}
}