-
-
Notifications
You must be signed in to change notification settings - Fork 370
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 633 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 633 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
{
"private": true,
"name": "peppermint",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@types/react": "18.2.38",
"@types/react-dom": "^18",
"prettier": "^2.5.1",
"turbo": "^2.0.3"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "yarn@4.2.2",
"dependencies": {
"fastify": "^5.1.0",
"next": "^14.2.15",
"nextra": "^3.0.15",
"nextra-theme-docs": "^3.0.15",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}