-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 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
38
39
40
41
42
43
44
45
{
"name": "retro-writer",
"private": true,
"version": "0.1.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --write \"**/*.{html,md}\"",
"format:check": "prettier --check \"**/*.{html,md}\"",
"prepare": "husky"
},
"lint-staged": {
"src/**": [
"eslint --fix"
],
"**/*.{html,md}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.9.6",
"typescript": "~5.7.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1"
},
"pnpm": {
"overrides": {
"brace-expansion@1": "^1.1.12",
"brace-expansion@2": "^2.0.2"
}
},
"packageManager": "pnpm@10.0.0+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b"
}