-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.1 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
{
"name": "ogre",
"version": "1.0.0",
"private": true,
"author": {
"name": "János Veres",
"email": "janos@dot.industries"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "auto shipit",
"postinstall": "patch-package"
},
"license": "MIT",
"devDependencies": {
"@auto-it/conventional-commits": "^11.0.7",
"@auto-it/microsoft-teams": "^11.0.7",
"@auto-it/npm": "^11.0.7",
"@auto-it/released": "^11.0.7",
"auto": "^11.0.7",
"dotenv-cli": "^7.3.0",
"prettier": "^3.2.5",
"turbo": "latest",
"patch-package": "^8.0.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=17.0.0"
},
"auto": {
"plugins": [
[
"npm",
{
"monorepoChangelog": true
}
],
"released",
"conventional-commits",
"microsoft-teams"
]
},
"packageManager": "npm@8.5.1"
}