-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.3 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.3 KB
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
{
"name": "writenex-monorepo",
"private": true,
"description": "Writenex monorepo - Modern WYSIWYG Markdown editor",
"author": "Erland <hello@erland.me>",
"license": "MIT",
"homepage": "https://writenex.com",
"repository": {
"type": "git",
"url": "https://github.com/erlandv/writenex.git"
},
"packageManager": "pnpm@10.15.1",
"scripts": {
"dev": "turbo dev",
"dev:writenex": "pnpm --filter writenex dev",
"build": "turbo build",
"build:writenex": "turbo build --filter writenex",
"build:astro": "turbo build --filter @writenex/astro",
"lint": "turbo lint",
"type-check": "turbo type-check",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,json,md,css,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,json,md,css,yaml}\"",
"validate": "pnpm lint && pnpm format:check"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.3.3",
"typescript": "^5.8.3"
}
}