-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathpackage.json
125 lines (125 loc) · 3.8 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@shopify/shopify-app-remix",
"version": "3.7.1",
"description": "Shopify Remix - to simplify the building of Shopify Apps with Remix",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-app-js.git"
},
"bugs": {
"url": "https://github.com/Shopify/shopify-app-js/issues"
},
"homepage": "https://github.com/Shopify/shopify-app-js/tree/main/packages/apps/shopify-app-remix",
"author": "Shopify Inc.",
"license": "MIT",
"main": "./dist/cjs/server/index.js",
"module": "./dist/esm/server/index.mjs",
"types": "./dist/ts/server/index.d.ts",
"exports": {
"./adapters/*": {
"types": "./dist/ts/server/adapters/*/index.d.ts",
"require": "./dist/cjs/server/adapters/*/index.js",
"import": "./dist/esm/server/adapters/*/index.mjs",
"default": "./dist/cjs/server/adapters/*/index.js"
},
"./server/adapters/*": {
"types": "./dist/ts/server/adapters/*/index.d.ts",
"require": "./dist/cjs/server/adapters/*/index.js",
"import": "./dist/esm/server/adapters/*/index.mjs",
"default": "./dist/cjs/server/adapters/*/index.js"
},
"./server": {
"types": "./dist/ts/server/index.d.ts",
"require": "./dist/cjs/server/index.js",
"import": "./dist/esm/server/index.mjs",
"default": "./dist/cjs/server/index.js"
},
"./react": {
"types": "./dist/ts/react/index.d.ts",
"require": "./dist/cjs/react/index.js",
"import": "./dist/esm/react/index.mjs",
"default": "./dist/cjs/react/index.js"
},
"./test-helpers": {
"types": "./dist/ts/server/test-helpers/index.d.ts",
"require": "./dist/cjs/server/test-helpers/index.js",
"import": "./dist/esm/server/test-helpers/index.mjs",
"default": "./dist/cjs/server/test-helpers/index.js"
}
},
"scripts": {
"build-docs": "sh docs/build-docs.sh",
"validate-docs": "sh ./docs/build-docs.sh isTest && pnpm compare-docs",
"lint": "eslint . --ext .js,.ts",
"build": "pnpm rollup && pnpm tsc -p ./tsconfig.build.json",
"tsc": "tsc",
"test": "jest",
"test:ci": "pnpm test",
"rollup": "rollup -c rollup.config.js --bundleConfigAsCjs",
"clean": "rimraf .rollup.cache dist",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"javascript",
"typescript",
"remix",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API"
],
"devDependencies": {
"@remix-run/node": "^2.15.2",
"@remix-run/react": "^2.15.2",
"@remix-run/testing": "^2.15.2",
"@shopify/generate-docs": "^0.16.4",
"@shopify/polaris": "^12.18.0",
"@shopify/react-testing": "^6.0.0",
"@shopify/shopify-app-session-storage-memory": "^4.0.12",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/react": "^19.0.8",
"@types/semver": "^7.5.8",
"@types/testing-library__jest-dom": "^6.0.0",
"jest-fetch-mock": "^3.0.3",
"jsonwebtoken": "^9.0.2"
},
"dependencies": {
"@remix-run/server-runtime": "^2.15.2",
"@shopify/admin-api-client": "^1.0.5",
"@shopify/shopify-api": "^11.8.1",
"@shopify/shopify-app-session-storage": "^3.0.12",
"@shopify/storefront-api-client": "^1.0.4",
"isbot": "^5.1.21",
"semver": "^7.7.0"
},
"peerDependencies": {
"@remix-run/node": "*",
"@remix-run/react": "*",
"@shopify/polaris": "*",
"react": "*"
},
"peerDependenciesMeta": {
"@shopify/polaris": {
"optional": true
},
"@remix-run/node": {
"optional": true
}
},
"files": [
"dist/*",
"!build/**/__tests__",
"!tsconfig.tsbuildinfo",
"!node_modules"
]
}