-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
63 lines (63 loc) · 1.51 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
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
{
"name": "maskable",
"private": true,
"type": "module",
"scripts": {
"lint": "prettier . --ignore-path .gitignore --check",
"postlint": "eslint .",
"format": "prettier . --ignore-path .gitignore --write",
"postformat": "eslint . --fix",
"test": "npm run check && vitest",
"e2e": "playwright test --project chromium",
"check": "tsc --noEmit",
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"dark-mode-toggle": "^0.15.0",
"file-drop-element": "^1.0.1"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@playwright/test": "^1.46.0",
"@types/node": "^22.1.0",
"@typescript/lib-dom": "npm:@types/web@^0.0.151",
"@vitejs/plugin-legacy": "^5.4.1",
"eslint": "^9.8.0",
"eslint-config-flat-gitignore": "^0.1.8",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"jsdom": "^24.1.1",
"prettier": "~3.3.3",
"types-wm": "^1.1.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-handlebars": "^2.0.0",
"vite-plugin-pwa": "^0.20.1",
"vite-plugin-webfont-dl": "^3.9.4",
"vitest": "^2.0.4"
},
"prettier": {
"singleQuote": true,
"proseWrap": "always",
"overrides": [
{
"files": [
"*.html",
"*.hbs"
],
"options": {
"printWidth": 120,
"singleQuote": false
}
},
{
"files": "meta.hbs",
"options": {
"parser": "html"
}
}
]
}
}