-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
83 lines (83 loc) · 3.58 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
{
"homepage": "https://www.graphcommerce.org/",
"name": "@graphcommerce/graphcommerce",
"repository": "github:graphcommerce-org/graphcommerce",
"version": "0.0.0",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"docs",
"packagesDev/*",
"packages/*",
"packages/*/example",
"packages/*/examples/*",
"examples/*"
],
"engines": {
"node": ">=18.19.0 <23.0.0"
},
"scripts": {
"eslint:lint": "eslint --ignore-path .gitignore '**/{*.ts,*.tsx}'",
"eslint:fix": "eslint --fix --ignore-path .gitignore '**/{*.ts,*.tsx}'",
"prettier:fix": "prettier --ignore-path .gitignore --write '**/*.{ts,tsx,css,html,json}'",
"tsc:lint": "tsc --noEmit -p .",
"tsc:perf": "NODE_OPTIONS=--max_old_space_size=10000 tsc --noEmit -p examples/magento-graphcms --generateTrace tsctrace --incremental false",
"playwright": "npx playwright test --headed --project=chrome",
"postinstall": "is-monorepo '[pkgrun] postinstall' '[pkgrun] patch-package'",
"release": "yarn changeset publish && git push --follow-tags",
"packages": "concurrently 'yarn:packages:1' 'yarn:packages:2' 'yarn:packages:3' 'yarn:packages:4' 'yarn:packages:5' 'yarn:packages:6' 'yarn:packages:7'",
"packages:1": "yarn workspace @graphcommerce/next-config dev",
"packages:2": "yarn workspace @graphcommerce/graphql-codegen-near-operation-file dev",
"packages:3": "yarn workspace @graphcommerce/graphql-codegen-relay-optimizer-plugin dev",
"packages:4": "yarn workspace @graphcommerce/hygraph-cli dev",
"packages:5": "yarn workspace @graphcommerce/cli dev",
"packages:6": "yarn workspace @graphcommerce/changeset-changelog dev",
"packages:7": "yarn workspace @graphcommerce/graphql-codegen-markdown-docs dev",
"create-patch": "patch-package --exclude 'package.json$|gql.ts$|interceptor.tsx$'",
"jest-watch": "yarn test --watch",
"test": "PRIVATE_ADDITIONAL_DEPENDENCIES=\"@graphcommerce/magento-cart-pickup,@graphcommerce/magento-payment-braintree,@graphcommerce/mollie-magento-payment,@graphcommerce/magento-payment-paypal,@graphcommerce/algolia-categories,@graphcommerce/algolia-products,@graphcommerce/algolia-personalization,@graphcommerce/algolia-recommend\" NODE_OPTIONS=\"--experimental-vm-modules\" jest"
},
"sideEffects": false,
"prettier": "@graphcommerce/prettier-config-pwa",
"eslintConfig": {
"extends": "@graphcommerce/eslint-config-pwa",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"dependencies": {
"@changesets/cli": "2.27.10",
"@unts/patch-package": "^8.0.0",
"concurrently": "8.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@graphcommerce/cli": "workspace:^",
"@graphcommerce/eslint-config-pwa": "workspace:^",
"@graphcommerce/hygraph-cli": "workspace:^",
"@graphcommerce/next-config": "workspace:^",
"@graphcommerce/prettier-config-pwa": "workspace:^",
"@graphcommerce/typescript-config-pwa": "workspace:^",
"@graphql-codegen/testing": "3.0.4",
"@playwright/test": "1.49.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/event-stream": "^4.0.5",
"@types/jest": "^29.5.14",
"eslint": "^8.57.1",
"event-stream": "^4.0.1",
"jest": "next",
"jest-diff": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3",
"typescript": "5.7.2"
},
"resolutions": {
"@changesets/assemble-release-plan": "5.2.4",
"@changesets/config": "2.3.1",
"@graphql-mesh/config": "0.106.8",
"@graphql-mesh/utils": "0.103.7"
}
}