-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.47 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": "@cardinal/root",
"version": "0.0.0",
"description": "Cardinal is a CLI tool that helps you quickstart a full-stack monorepo project. You choose the parts you want, we put it together.",
"license": "MIT",
"author": "Ernesto Resende <[email protected]>",
"type": "module",
"scripts": {
"typecheck": "turbo typecheck",
"build": "turbo build",
"build:cli": "turbo --filter=create-cardinal-app build",
"build:docs": "turbo --filter=web build",
"dev:cli": "turbo --filter=create-cardinal-app dev",
"dev:docs": "turbo --filter=web dev",
"start:cli": "turbo --filter=create-cardinal-app start",
"start:docs": "turbo --filter=web start",
"lint": "turbo lint",
"lint:cli": "turbo --filter=create-cardinal-app lint",
"lint:docs": "turbo --filter=create-cardinal-app lint",
"lint:fix": "turbo lint:fix",
"format": "turbo format",
"format:write": "turbo format:write",
"clean": "turbo clean && rimraf node_modules",
"release": "changeset version",
"release:canary": "changeset version --snapshot canary",
"publish": "changeset publish",
"publish:canary": "changeset publish --tag canary"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/node": "^20.4.6",
"@types/prettier": "^2.7.3",
"eslint-config-prettier": "^8.10.0",
"rimraf": "^5.0.1",
"turbo": "^1.10.12",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}