forked from Shopify/shopify-api-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.5 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
{
"name": "@shopify/shopify-api",
"version": "5.2.0",
"description": "Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": "@shopify/prettier-config",
"scripts": {
"test": "jest --testPathIgnorePatterns=src/rest-resources/__tests__ --testPathIgnorePatterns=src/auth/session/storage",
"test_sessionstorage": "jest src/auth/session/storage",
"test_rest_resources": "ls src/rest-resources/__tests__ | xargs -I \"{}\" sh -c 'yarn jest --no-coverage --testPathPattern=\\\"{}\\\" || exit 255'",
"build": "tsc",
"lint": "eslint '**/*.{ts,tsx}' --max-warnings 0",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"prepublishOnly": "yarn run build",
"preversion": "yarn run test",
"postversion": "git push origin main --follow-tags && echo \"Log in to shipit to deploy version $npm_package_version\""
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-api-node.git"
},
"bugs": {
"url": "https://github.com/Shopify/shopify-api-node/issues"
},
"homepage": "https://github.com/Shopify/shopify-api-node",
"author": "Shopify Inc.",
"license": "MIT",
"keywords": [
"shopify",
"node",
"jwt",
"app",
"graphql",
"rest",
"webhook",
"Admin API",
"Storefront API"
],
"resolutions": {
"node-fetch": "^2.6.7"
},
"dependencies": {
"@shopify/network": "^1.5.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/node-fetch": "^2.5.7",
"@types/supertest": "^2.0.10",
"cookies": "^0.8.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.5.0",
"mysql2": "^2.3.3",
"node-fetch": "^2.6.1",
"pg": "^8.7.3",
"redis": "^4.1.0",
"sqlite3": "^5.0.8",
"tslib": "^2.0.3",
"uuid": "^8.3.1"
},
"devDependencies": {
"@shopify/eslint-plugin": "^41.1.0",
"@shopify/prettier-config": "^1.1.2",
"@types/cookies": "^0.7.5",
"@types/jest": "^26.0.15",
"@types/node": "^14.18.12",
"@types/pg": "^8.6.5",
"@types/sqlite3": "^3.1.8",
"@types/uuid": "^8.3.0",
"eslint": "^7.30.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"jest": "^27.4.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-jest": "^27.1.1",
"typescript": "^4.6.3"
},
"files": [
"dist/*",
"!tsconfig.tsbuildinfo"
]
}