-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "personal-homepage",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "echo test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --check . && eslint .",
"lint:scss": "stylelint \"src/**/*.{css,scss,svelte}\"",
"format": "prettier . --write ."
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/kit": "^2.15.3",
"@types/gsap": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"postcss": "^8.5.1",
"postcss-html": "^1.8.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"sass": "^1.83.4",
"stylelint": "^16.13.2",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-scss": "^6.10.1",
"svelte": "^5.18.0",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"sveltekit-superforms": "^2.22.1",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^3.0.1",
"zod": "^3.24.1"
},
"type": "module",
"dependencies": {
"@floating-ui/dom": "^1.6.13",
"@sendgrid/mail": "^8.1.4",
"@sveltelaunch/svelte-5-email": "^0.0.11",
"gsap": "^3.12.7"
}
}