forked from graphcommerce-org/graphcommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.36 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
{
"homepage": "https://www.graphcommerce.org/",
"name": "root",
"repository": "github:graphcommerce-org/graphcommerce",
"version": "5.0.0",
"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$'"
},
"sideEffects": false,
"prettier": "@graphcommerce/prettier-config-pwa",
"eslintConfig": {
"extends": "@graphcommerce/eslint-config-pwa",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"dependencies": {
"@changesets/cli": "2.26.2",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"concurrently": "8.2.1",
"jest-environment-jsdom": "^29.5.0",
"patch-package": "8.0.0"
},
"devDependencies": {
"@playwright/test": "1.37.1",
"eslint": "8.48.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"resolutions": {
"graphql-jit": "0.8.2"
}
}