forked from graphcommerce-org/graphcommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.22 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
{
"name": "@graphcommerce/graphcommerce",
"homepage": "https://www.graphcommerce.org/",
"repository": "github:graphcommerce-org/graphcommerce",
"version": "2.165.3",
"private": true,
"workspaces": [
"docs",
"packagesDev/*",
"packages/*",
"packages/*/example",
"packages/*/examples/*",
"examples/*"
],
"engines": {
"node": "14.x"
},
"scripts": {
"eslint:lint": "eslint --ignore-path .gitignore '**/{*.js,*.ts,*.tsx}'",
"eslint:fix": "eslint --fix --ignore-path .gitignore '**/{*.js,*.ts,*.tsx}'",
"prettier:fix": "yarn prettier --ignore-path .gitignore --write '**/*.{ts,tsx,css,html,json}'",
"tsc:lint": "yarn 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:1' 'yarn prepack:2' 'yarn prepack:2'",
"prepack:1": "yarn workspace @graphcommerce/next-config prepack",
"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:2'",
"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"
},
"sideEffects": false,
"prettier": "@graphcommerce/prettier-config-pwa",
"eslintConfig": {
"extends": "@graphcommerce/eslint-config-pwa",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"dependencies": {
"@changesets/changelog-github": "0.4.4",
"@changesets/cli": "2.22.0",
"@graphcommerce/eslint-config-pwa": "^4.1.3",
"@graphcommerce/prettier-config-pwa": "^4.0.5",
"@playwright/test": "^1.20.1",
"concurrently": "7.1.0",
"patch-package": "6.4.7"
},
"devDependencies": {
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/sharp": "0.30.1",
"eslint": "8.12.0",
"prettier": "2.6.2",
"typescript": "4.6.3"
}
}