-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 KB
/
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
{
"name": "client",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "yarn workspace blog run dev",
"build": "yarn workspace blog run build",
"start": "yarn workspace blog run start",
"lint": "yarn workspaces foreach -A run lint",
"lint:post": "yarn textlint _data/_posts",
"build:all": "yarn workspaces run build",
"image-manager": "yarn workspace image-manager-server dev & yarn workspace image-manager-client dev"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"babel-eslint": "10.1.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"next-sitemap": "^4.0.0",
"prettier": "^3.0.0",
"textlint": "^14.0.0",
"textlint-filter-rule-allowlist": "^4.0.0",
"textlint-rule-preset-ja-technical-writing": "^10.0.0",
"textlint-rule-preset-jtf-style": "^2.3.13",
"typescript": "5.6.3"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}