forked from tursodatabase/shopify-app-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "@shopify/shopify-app-express",
"version": "4.1.2",
"description": "Shopify Express Middleware - to simplify the building of Shopify Apps with Express",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-app-express.git"
},
"bugs": {
"url": "https://github.com/Shopify/shopify-app-express/issues"
},
"homepage": "https://github.com/Shopify/shopify-app-express/tree/main/packages/shopify-app-express",
"author": "Shopify Inc.",
"license": "MIT",
"main": "./build/cjs/index.js",
"types": "./build/ts/index.d.ts",
"scripts": {},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"node",
"express",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API"
],
"dependencies": {
"@shopify/shopify-api": "^9.3.2",
"@shopify/shopify-app-session-storage": "^2.1.1",
"@shopify/shopify-app-session-storage-memory": "^3.0.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.1",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"jsonwebtoken": "^9.0.2",
"supertest": "^6.3.3"
},
"files": [
"build/*",
"!bundle/*",
"!tsconfig.tsbuildinfo",
"!node_modules"
]
}