-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 4.44 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 4.44 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"homepage": "https://www.graphcommerce.org/",
"name": "@graphcommerce/graphcommerce",
"repository": "github:graphcommerce-org/graphcommerce",
"version": "0.0.0",
"packageManager": "yarn@4.5.3",
"private": true,
"workspaces": [
"docs",
"packagesDev/*",
"packages/*",
"packages/*/example",
"packages/*/examples/*",
"examples/*"
],
"engines": {
"node": ">=20 <24.0.0"
},
"scripts": {
"prepare": "husky",
"eslint:lint": "eslint '**/{*.ts,*.tsx}'",
"eslint:fix": "eslint --fix '**/{*.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$|interceptor.ts$|generated/*'",
"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\" vitest run",
"test:watch": "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\" vitest"
},
"sideEffects": false,
"prettier": "@graphcommerce/prettier-config-pwa",
"eslintConfig": {
"extends": "@graphcommerce/eslint-config-pwa",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"dependencies": {
"@changesets/cli": "2.29.8",
"@unts/patch-package": "^8.1.1",
"concurrently": "8.2.2",
"html-entities": "^2.6.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"remark": "^15.0.1"
},
"devDependencies": {
"@apollo/client": "^4.0.11",
"@graphcommerce/cli": "workspace:^",
"@graphcommerce/eslint-config-pwa": "workspace:^",
"@graphcommerce/graphql-mesh": "workspace:^",
"@graphcommerce/hygraph-cli": "workspace:^",
"@graphcommerce/next-config": "workspace:^",
"@graphcommerce/prettier-config-pwa": "workspace:^",
"@graphcommerce/typescript-config-pwa": "workspace:^",
"@graphql-mesh/cli": "0.100.21",
"@graphql-mesh/runtime": "0.106.19",
"@graphql-mesh/types": "0.104.18",
"@graphql-mesh/utils": "0.104.18",
"@lingui/loader": "5.7.0",
"@lingui/macro": "5.7.0",
"@lingui/react": "5.7.0",
"@playwright/test": "1.57.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/event-stream": "^4.0.6",
"@types/node": "^20.19.27",
"@vitejs/plugin-react": "^4.4.1",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "16.6.1",
"eslint": "^9.39.2",
"event-stream": "^4.0.1",
"graphql": "^16.12.0",
"husky": "^9.1.7",
"jest-diff": "^29.7.0",
"knip": "^5.63.0",
"next": "16.1.1",
"prettier": "^3.7.4",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"rxjs": "^7.8.2",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"unified": "^11.0.5",
"vite": "^7.3.0",
"vitest": "^3.0.0",
"webpack": "^5.103.0"
},
"resolutions": {
"@changesets/assemble-release-plan": "5.2.4",
"@changesets/config": "2.3.1",
"prettier": "3.5.3"
}
}