-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.67 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
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
{
"name": "shopify-payment-extension",
"private": true,
"scripts": {
"build": "remix vite:build",
"config:link": "shopify app config link",
"config:use": "shopify app config use",
"deploy": "shopify app deploy",
"dev": "AWS_DEFAULT_REGION=ap-southeast-2 AWS_PROFILE=stream-dev sst dev shopify app dev",
"docker-start": "npm run setup && npm run start",
"env": "shopify app env",
"generate": "shopify app generate",
"graphql-codegen": "graphql-codegen",
"lint": "tsc --noEmit; eslint --cache --cache-location ./node_modules/.cache/eslint .; prettier --check .",
"shopify": "shopify",
"start": "remix-serve ./build/server/index.js",
"vite": "vite",
"test:unit:watch": "DEBUG_PRINT_LIMIT=99999999999999 vitest",
"test:unit": "vitest run",
"test:fetch-users": "tsx tests/e2e/fetch-users.ts",
"test:e2e": "playwright test",
"deploy:static-stack": "sst deploy --stage production-static"
},
"type": "module",
"engines": {
"node": ">=16.0.0 <22.0.0"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.588.0",
"@remix-run/dev": "^2.9.2",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@shopify/app-bridge-react": "^4.1.3",
"@shopify/polaris": "^13.4.0",
"@shopify/shopify-api": "^11.0.0",
"@shopify/shopify-app-remix": "^3.0.0",
"@shopify/shopify-app-session-storage-dynamodb": "^4.0.0",
"isbot": "^5.1.8",
"javy": "^0.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sst": "ion",
"toml": "^3.0.0",
"vite-tsconfig-paths": "^4.3.2"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@remix-run/eslint-config": "^2.9.2",
"@remix-run/testing": "^2.9.2",
"@shopify/api-codegen-preset": "^1.0.0",
"@shopify/shopify-app-session-storage-memory": "^4.0.0",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^8.56.10",
"@types/node": "^20.13.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"globals": "^15.3.0",
"jest": "29.7.0",
"jsdom": "^24.1.0",
"prettier": "^3.2.5",
"tsx": "^4.11.2",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vitest": "^1.6.0"
},
"workspaces": [
"extensions/*"
],
"trustedDependencies": [
"@shopify/plugin-cloudflare"
],
"resolutions": {
"undici": "6.13.0"
},
"overrides": {
"undici": "6.13.0"
},
"author": "Jake He"
}