forked from graphcommerce-org/graphcommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.48 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
{
"homepage": "https://www.graphcommerce.org/",
"repository": "github:graphcommerce-org/graphcommerce",
"version": "5.0.0",
"private": true,
"workspaces": [
"docs",
"packagesDev/*",
"packages/*",
"packages/*/example",
"packages/*/examples/*",
"examples/*"
],
"engines": {
"node": ">=14.18.3"
},
"scripts": {
"eslint:lint": "eslint --ignore-path .gitignore '**/{*.js,*.ts,*.tsx}'",
"eslint:fix": "eslint --fix --ignore-path .gitignore '**/{*.js,*.ts,*.tsx}'",
"prettier:fix": "prettier --ignore-path .gitignore --write '**/*.{ts,tsx,css,html,json}'",
"tsc:lint": "tsc --noEmit -p .",
"playwright": "npx playwright test --headed --project=chrome",
"postinstall": "patch-package && yarn prepack",
"release": "yarn changeset publish && git push --follow-tags",
"prepack": "concurrently 'yarn:prepack:2' 'yarn:prepack:3'",
"prepack:2": "yarn workspace @graphcommerce/graphql-codegen-near-operation-file prepack",
"prepack:3": "yarn workspace @graphcommerce/graphql-codegen-relay-optimizer-plugin prepack",
"packages": "concurrently 'yarn:packages:1' 'yarn:packages:2' 'yarn:packages:3' 'yarn:packages:4'",
"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/cli dev"
},
"sideEffects": false,
"prettier": "@graphcommerce/prettier-config-pwa",
"eslintConfig": {
"extends": "@graphcommerce/eslint-config-pwa",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"dependencies": {
"@babel/core": "^7.20.5",
"@changesets/cli": "2.25.2",
"@lingui/core": "3.15.0",
"@lingui/react": "3.15.0",
"@mui/lab": "5.0.0-alpha.112",
"@mui/material": "5.11.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"concurrently": "7.6.0",
"framer-motion": "7.9.0",
"graphql": "16.6.0",
"jest-environment-jsdom": "^29.1.2",
"next": "12.2.5",
"patch-package": "6.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "5.75.0"
},
"devDependencies": {
"@playwright/test": "1.28.1",
"@types/node": "16.11.7",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"eslint": "8.29.0",
"prettier": "2.8.1",
"type-fest": "^3.4.0",
"typescript": "4.9.4"
}
}