-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "www",
"version": "8.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"dev:ru": "LOCALE=ru npm run dev",
"build": "vite build",
"build:ru": "LOCALE=ru npm run build",
"preview": "vite preview",
"test": "playwright test",
"test:refresh": "playwright test --update-snapshots",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"static": "node ./ops/static",
"predev": "npm run static",
"prebuild": "npm run static"
},
"dependencies": {
"@fontsource/pt-mono": "^5.0.8",
"@fontsource/pt-sans": "^5.0.8"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.10",
"eslint": "^9.4.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-svelte": "^2.30.0",
"mdsvex": "^0.11.0",
"prettier": "^3.3.0",
"prettier-plugin-svelte": "^3.2.3",
"rehype-autolink-headings": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-unwrap-images": "^4.0.0",
"svelte": "^4.0.5",
"vite": "^5.2.12"
}
}