-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1020 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1020 Bytes
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
{
"name": "shopify-express-auth",
"version": "1.0.1-alpha.11",
"description": "Middleware to authenticate express app with Shopify",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"prettier": "@shopify/prettier-config",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint"
},
"keywords": [
"shopify",
"express",
"node",
"jwt",
"middleware",
"app",
"rest",
"graphql"
],
"author": "Arneesh Aima",
"license": "ISC",
"dependencies": {
"@shopify/shopify-api": "^2.0.0",
"express": "^4.17.1",
"querystring": "^0.2.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@shopify/prettier-config": "^1.1.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"sideEffects": false,
"files": [
"dist/*",
"!tsconfig.tsbuildinfo"
]
}