-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
78 lines (78 loc) · 2.23 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
{
"name": "nuxt-shopify",
"version": "2.0.3",
"description": "Easy Shopify Buy client integration with Nuxt.js",
"author": {
"name": "Gomah <[email protected]>"
},
"workspaces": [
"docs"
],
"keywords": [
"vue",
"nuxt",
"nuxt.js",
"shopify",
"shopify-buy",
"nuxt-shopify"
],
"types": "types/index.d.ts",
"main": "lib/module.js",
"files": [
"lib",
"types/*.d.ts"
],
"repository": "https://github.com/Gomah/nuxt-shopify",
"homepage": "https://nuxt-shopify-docs.vercel.app",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"dev": "nuxt test/fixture",
"prepublishOnly": "yarn build",
"test:system": "NODE_ENV=test jest --testRegex \"/test/system/(.+)\\.test\\.ts$\"",
"build": "tsc -b",
"release:rc": "yarn test && HUSKY_SKIP_HOOKS=1 standard-version --prerelease rc && git push --follow-tags && npm publish --tag rc",
"release": "yarn test && HUSKY_SKIP_HOOKS=1 standard-version && git push --follow-tags && npm publish",
"watch": "tsc --watch",
"test": "yarn test:lint && yarn test:jest",
"test:jest": "NODE_ENV=test && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:lint": "eslint --ext .js,.ts, src/"
},
"dependencies": {
"@types/shopify-buy": "3.0.0",
"isomorphic-unfetch": "3.1.0",
"shopify-buy": "3.0.4"
},
"devDependencies": {
"@babel/core": "7.26.9",
"@babel/preset-env": "7.23.9",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@nuxt/types": "2.17.3",
"@types/babel__core": "7",
"@types/consola": "2.2.5",
"@types/jest": "27.5.2",
"@types/jsdom": "16.2.15",
"@types/node": "20.11.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"babel-jest": "29.7.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "7.0.4",
"jest": "29.7.0",
"jsdom": "21.1.2",
"nuxt": "2.17.3",
"prettier": "3.2.5",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"standard-version": "9.5.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"packageManager": "[email protected]"
}