forked from saleor/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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-apps",
"version": "0.0.0",
"scripts": {
"build": "turbo run build",
"check-deps": "syncpack list-mismatches",
"check-spelling": "cspell **/*.{jsx,tsx,js,ts,md,mdx}",
"deploy": "turbo run deploy",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format-package-json": "syncpack format",
"generate": "turbo run generate",
"github:release": "pnpm changeset tag && git push --follow-tags",
"lint": "turbo run lint",
"lint-staged": "lint-staged",
"prepare": "husky install",
"start": "turbo run start",
"test": "turbo run test"
},
"dependencies": {
"@saleor/app-sdk": "0.47.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@sentry/cli": "2.20.6",
"@types/node": "18.15.3",
"cspell": "^7.2.0",
"eslint": "8.46.0",
"eslint-config-saleor": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"next": "13.4.8",
"prettier": "3.0.3",
"syncpack": "10.9.3",
"turbo": "1.10.12"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md}": "prettier --write",
"*.{ts,tsx,md,js,jsx}": "cspell --no-must-find-files"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"crypto-js@<4.2.0": ">=4.2.0"
}
},
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"templates/*"
]
}