forked from event-catalog/generators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 KB
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
{
"name": "eventcatalog-generators",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean && rm -rf node_modules",
"test": "turbo run test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build && changeset publish",
"format": "prettier --write . --ignore-path .prettierignore",
"format:diff": "prettier --list-different . --ignore-path .prettierignore",
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/update-notifier": "^6.0.8",
"prettier": "^3.4.2",
"turbo": "^2.4.0",
"typescript": "5.7.3"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@eventcatalog/license": "^0.0.7",
"boxen": "^8.0.1",
"chalk": "4.1.2",
"update-notifier": "^7.3.1"
},
"pnpm": {
"overrides": {
"graphql": "^16.8.1"
}
},
"repository": {
"type": "git",
"url": "https://github.com/event-catalog/generators"
}
}