-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (32 loc) · 939 Bytes
/
package.json
File metadata and controls
executable file
·32 lines (32 loc) · 939 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --continue",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"docs:deploy": "turbo run docs:deploy",
"changeset": "changeset",
"typedoc": "turbo run typedoc",
"version-packages": "changeset version",
"release": "turbo run build --filter=docs^... && changeset publish"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@types/lodash": "^4.14.199",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsconfig": "workspace:*",
"turbo": "^1.10.16",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1"
},
"packageManager": "npm@8.19.3",
"workspaces": ["apps/*", "packages/*"]
}