-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.57 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "keyboard-writer",
"version": "1.0.0",
"description": "The ultimate typing trainer for programmers - with Code Playground, Git/Vim/Regex training, gamification and PWA support",
"type": "module",
"author": "niklasmarderx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/niklasmarderx/KeyboardWriter.git"
},
"homepage": "https://github.com/niklasmarderx/KeyboardWriter",
"bugs": {
"url": "https://github.com/niklasmarderx/KeyboardWriter/issues"
},
"keywords": [
"typing",
"trainer",
"programmer",
"keyboard",
"practice",
"git",
"vim",
"regex",
"terminal",
"pwa",
"gamification"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.{ts,css,html}",
"test": "vitest",
"test:coverage": "vitest --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"prettier --write"
],
"*.{json,md,html}": [
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.3",
"prettier": "^3.2.5",
"terser": "^5.46.0",
"typescript": "^5.3.3",
"vite": "^5.1.0",
"vitest": "^1.3.0"
}
}