-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "cloudcatalog",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"lint:ci": "turbo run lint -- --quiet",
"test": "turbo run test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"format:diff": "prettier --list-different \"**/*.{js,jsx,ts,tsx,json}\"",
"publish-packages": "turbo run build lint && changeset version && changeset publish",
"version": "changeset version",
"publish": "changeset publish",
"start:website": "cd website && npm run start",
"start:catalog": "node scripts/start-catalog-locally.js",
"verify-build:catalog": "node scripts/verify-build-catalog-locally.js"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"all-contributors-cli": "^6.26.1",
"eslint-config-custom": "*",
"prettier": "latest",
"tsup": "^6.5.0",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"overrides": {
"@mdx-js/mdx": "2.1.5",
"@mdx-js/react": "2.1.5"
}
}