forked from saleor/storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.6 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
{
"name": "saleor-storefront",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "env-cmd --no-override -f .env env-cmd --no-override -f .env.local --fallback turbo run build --cache-dir=.turbo",
"build:saleor-app-checkout": "pnpm run build --filter=saleor-app-checkout...",
"build:storefront": "pnpm run build --filter=storefront...",
"start": "env-cmd --no-override -f .env env-cmd --no-override -f .env.local --fallback turbo run start --parallel --cache-dir=.turbo",
"start:saleor-app-checkout": "pnpm run start --filter=saleor-app-checkout...",
"start:storefront": "pnpm run start --filter=storefront...",
"generate": "env-cmd --no-override -f .env env-cmd --no-override -f .env.local --fallback turbo run generate --cache-dir=.turbo",
"dev": "env-cmd --no-override -f .env env-cmd --no-override -f .env.local --fallback pnpm run _dev",
"/*": "https://github.com/vercel/turborepo/issues/460",
"_dev": "turbo run build --filter=@saleor/checkout-storefront --cache-dir=.turbo && turbo run dev --parallel --cache-dir=.turbo --filter=!checkout",
"lint": "env-cmd --no-override -f .env env-cmd --no-override -f .env.local --fallback turbo run lint --cache-dir=.turbo",
"lint:staged": "env-cmd --no-override -f .env env-cmd --no-override -f .env.local --fallback turbo run lint:staged",
"check-types": "turbo run check-types --cache-dir=.turbo",
"test": "env-cmd --no-override -f .env turbo run test --cache-dir=.turbo",
"i18n": "pnpm run i18n:extract && pnpm run i18n:compile",
"i18n:extract": "turbo run i18n:extract --cache-dir=.turbo",
"i18n:compile": "turbo run i18n:compile --cache-dir=.turbo",
"format": "prettier --write .",
"prepare": "husky install",
"clean-deps": "turbo run clean && rm -rf node_modules **/node_modules pnpm-lock.yaml",
"clean-envs": "find . -maxdepth 3 -name \".env.local\" -type f -exec rm -i {} \\;",
"clean-auth-files": "find . -maxdepth 3 -name \".auth_token\" -exec rm -i {} \\;",
"clean": "rm -rf .turbo; turbo run clean",
"cy:run": "cypress run",
"cy:open": "cypress open"
},
"devDependencies": {
"cypress": "10.11.0",
"env-cmd": "10.1.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"turbo": "1.6.1",
"typescript": "4.8.4"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0",
"pnpm": ">=7.7.1"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@urql/exchange-auth>@urql/core": "3.2.2",
"@urql/exchange-multipart-fetch>@urql/core": "3.2.2"
}
}
}