forked from saleor/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "saleor-apps",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"templates/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"start": "turbo run start",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"prepare": "husky install",
"github:release": "pnpm changeset tag && git push --follow-tags",
"check-deps": "syncpack fix-mismatches --source \"apps/*/package.json\" --source \"packages/*/package.json\""
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"eslint": "^8.35.0",
"eslint-config-saleor": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"next": "^13.3.0",
"prettier": "^2.8.4",
"turbo": "^1.9.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md}": "prettier --write"
},
"dependencies": {
"syncpack": "^10.1.0"
}
}