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
33 lines (33 loc) · 974 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 974 Bytes
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
{
"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.5",
"boxen": "^8.0.1",
"chalk": "^4",
"update-notifier": "^7.3.1"
}
}