-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
{
"name": "site",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"lint:fix": "prettier --ignore-path .gitignore --write --plugin-search-dir=. . && eslint --fix --ignore-path .gitignore .",
"ci": "npm run lint && npm run check && npm run build",
"e2e": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-static": "next",
"@sveltejs/kit": "next",
"@types/mdx": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"mdsvex": "^0.10.6",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"prism-themes": "^1.9.0",
"svelte": "^3.53.1",
"svelte-check": "^2.9.2",
"svelte-click-outside": "^1.0.0",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.2.4",
"tslib": "^2.4.1",
"typescript": "~4.9.3",
"vite": "^3.2.4"
},
"type": "module"
}