forked from graphcommerce-org/graphcommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 3.07 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
{
"homepage": "https://www.graphcommerce.org/",
"name": "root",
"repository": "github:graphcommerce-org/graphcommerce",
"version": "5.0.0",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"docs",
"packagesDev/*",
"packages/*",
"packages/*/example",
"packages/*/examples/*",
"examples/*"
],
"engines": {
"node": "16.x.x||18.x.x||20.x.x"
},
"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": "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-mesh,@graphcommerce/algolia-personalization\" 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.7",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.3.1",
"@unts/patch-package": "^8.0.0",
"concurrently": "8.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@graphql-codegen/testing": "3.0.3",
"@playwright/test": "1.45.1",
"@types/event-stream": "^4.0.5",
"@types/jest": "^29.5.12",
"eslint": "^8",
"event-stream": "^4.0.1",
"jest": "next",
"jest-diff": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.3.3",
"typescript": "5.5.3"
},
"resolutions": {
"@changesets/assemble-release-plan": "5.2.4",
"@changesets/config": "2.3.1",
"@graphql-tools/delegate": "10.0.13"
}
}