-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.15 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
{
"name": "ja-to-en-translator",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@8.15.4",
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r --if-present run dev",
"lint": "pnpm -r --if-present run lint",
"lint:fix": "pnpm -r --if-present run lint:fix",
"format": "pnpm -r --if-present run format",
"format:check": "pnpm -r --if-present run format:check",
"test:unit": "pnpm -r --if-present --filter \\!@ja-to-en/e2e run test",
"test": "pnpm run test:unit",
"coverage": "pnpm -r --filter domain --filter infra-cache --if-present run coverage",
"test:e2e": "pnpm --filter e2e test"
},
"engines": {
"node": ">=20.9.0"
},
"devDependencies": {
"@types/chrome": "^0.0.251",
"@types/node": "^20.12.7",
"@vitejs/plugin-react": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"esbuild": "^0.21.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.2.5",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vitest": "^1.6.0"
}
}