-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.74 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": "dev-templates",
"version": "1.0.0",
"private": true,
"author": {
"name": "Notum Technologies",
"email": "info@notum.cz",
"url": "https://notum.cz"
},
"maintainers": [
{
"name": "Notum Technologies",
"email": "info@notum.cz",
"url": "https://notum.cz"
}
],
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build --cache-dir=.turbo",
"build:strapi": "turbo run build --filter=@repo/strapi",
"build:ui": "turbo run build --filter=@repo/ui",
"commit": "git-cz",
"dev": "turbo dev",
"dev:strapi": "turbo run dev --filter=@repo/strapi",
"dev:ui": "turbo run dev --filter=@repo/ui",
"format": "prettier --write --cache --ignore-unknown \"**/*.{js,jsx,ts,tsx,md,css,scss}\"",
"heroku-postbuild": "bash ./scripts/heroku/heroku-postbuild.sh",
"preinstall": "npx only-allow yarn",
"lint": "turbo lint",
"prepare": "husky",
"start:strapi": "turbo run start --filter=@repo/strapi",
"start:ui": "turbo run start --filter=@repo/ui"
},
"prettier": "@repo/prettier-config",
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@repo/eslint-config": "*",
"@repo/prettier-config": "*",
"@repo/typescript-config": "*",
"commitizen": "4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"husky": "^9.1.1",
"lint-staged": "15.2.7",
"prettier": "3.3.2",
"turbo": "^2.0.9"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": "20.x.x",
"yarn": "1.22.x"
},
"comments": {
"prettier": "bump to 3.3.3 destroys types schemas generated by Strapi (@strapi/typescript-utils > generators > utils > prettier.format())"
}
}