forked from Shopify/shopify-app-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.45 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
{
"name": "@shopify/shopify-app-remix",
"version": "2.2.0",
"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/shopify-app-remix",
"author": "Shopify Inc.",
"license": "MIT",
"types": "./build/ts/server/index.d.ts",
"main": "./build/cjs/server/index.js",
"exports": {
".": {
"types": "./build/ts/server/index.d.ts",
"default": "./build/cjs/server/index.js"
},
"./adapters/*": "./build/cjs/server/adapters/*/index.js",
"./server": {
"types": "./build/ts/server/index.d.ts",
"default": "./build/cjs/server/index.js"
},
"./server/adapters/*": "./build/cjs/server/adapters/*/index.js",
"./react": {
"types": "./build/ts/react/index.d.ts",
"default": "./build/cjs/react/index.js"
}
},
"scripts": {
"build-docs": "sh docs/build-docs.sh",
"validate-docs": "sh ./docs/build-docs.sh isTest && yarn compare-docs"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"javascript",
"typescript",
"remix",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API"
],
"devDependencies": {
"@remix-run/react": "^2.0.0",
"@shopify/generate-docs": "^0.11.1",
"@shopify/polaris": "^11.8.0",
"@shopify/react-testing": "^5.1.3",
"@shopify/shopify-app-session-storage-memory": "^2.0.2",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/react": "^18.2.18",
"@types/semver": "^7.5.6",
"jest": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jsonwebtoken": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.0"
},
"dependencies": {
"@remix-run/server-runtime": "^2.0.0",
"@shopify/shopify-api": "^8.1.1",
"@shopify/shopify-app-session-storage": "^2.0.2",
"isbot": "^3.7.1",
"semver": "^7.5.4",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@remix-run/react": "*",
"@shopify/polaris": "*",
"react": "*"
},
"peerDependenciesMeta": {
"@shopify/polaris": {
"optional": true
}
},
"files": [
"build/*",
"!build/**/__tests__",
"!bundle/*",
"!tsconfig.tsbuildinfo",
"!node_modules"
]
}