forked from Shopify/shopify-app-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.43 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
{
"name": "@shopify/shopify-app-remix",
"version": "3.0.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/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"
}
},
"scripts": {
"build-docs": "sh docs/build-docs.sh",
"validate-docs": "sh ./docs/build-docs.sh isTest && yarn compare-docs",
"lint": "eslint . --ext .js,.ts",
"build": "yarn run rollup && yarn tsc -p ./tsconfig.build.json",
"test": "jest",
"test:ci": "yarn test",
"rollup": "rollup -c rollup.config.js --bundleConfigAsCjs",
"clean": "rimraf .rollup.cache dist",
"changeset": "changeset",
"version": "changeset version",
"release": "yarn build && changeset publish"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"javascript",
"typescript",
"remix",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API"
],
"devDependencies": {
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@shopify/generate-docs": "^0.16.0",
"@shopify/polaris": "^12.18.0",
"@shopify/react-testing": "^5.3.0",
"@shopify/shopify-app-session-storage-memory": "^4.0.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/react": "^18.3.3",
"@types/semver": "^7.5.8",
"jest-fetch-mock": "^3.0.3",
"jsonwebtoken": "^9.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.22.3"
},
"dependencies": {
"@remix-run/server-runtime": "^2.5.1",
"@shopify/admin-api-client": "^1.0.0",
"@shopify/shopify-api": "^11.0.0",
"@shopify/shopify-app-session-storage": "^3.0.0",
"@shopify/storefront-api-client": "^1.0.0",
"isbot": "^5.1.6",
"semver": "^7.6.2"
},
"peerDependencies": {
"@remix-run/react": "*",
"@remix-run/node": "*",
"@shopify/polaris": "*",
"react": "*"
},
"peerDependenciesMeta": {
"@shopify/polaris": {
"optional": true
},
"@remix-run/node": {
"optional": true
}
},
"files": [
"dist/*",
"!build/**/__tests__",
"!tsconfig.tsbuildinfo",
"!node_modules"
]
}