forked from butaneprotocol/blaze-cardano
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 805 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 805 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
{
"workspaces": [
"sites/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf .turbo && rm -rf node_modules",
"docs": "typedoc --skipErrorChecking && mkdir docs/logo && cp logo/BLAZE_LOGO2.svg docs/logo/BLAZE_LOGO2.svg",
"fmt": "prettier -w .",
"changeset": "changeset",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@blaze-cardano/eslint-config": "workspace:*",
"@changesets/cli": "^2.27.7",
"@types/node": "^20.14.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"turbo": "^1.13.4",
"typedoc": "^0.25.13",
"typescript": "^5.5.4"
}
}