-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 983 Bytes
/
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
{
"name": "drab-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"author": {
"name": "Ross Robino",
"url": "https://robino.dev"
},
"scripts": {
"test": "vitest run",
"test:dev": "vitest",
"doc:edit": "node scripts/doc",
"doc": "typedoc --options typedoc.config.js && npm run doc:edit",
"dev": "turbo dev",
"check": "turbo check",
"build": "npm run doc && turbo build",
"format": "prettier --write .",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@robino/prettier": "^0.1.1",
"@robino/tsconfig": "^0.2.2",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.1.3",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
}
}