-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.7 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sveltekit-stackter",
"version": "1.0.0",
"private": true,
"author": {
"name": "Shamim Hossain",
"email": "hossains159@gmail.com"
},
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel vite:dev typesafe-i18n",
"vite:dev": "vite dev --host",
"build": "vite build",
"start": "node build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . && eslint . --fix",
"prepare": "husky install && svelte-kit sync",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\"",
"typesafe-i18n": "typesafe-i18n",
"test:integration": "playwright test",
"test:unit": "vitest",
"update-deps": "taze major -I"
},
"devDependencies": {
"@csstools/postcss-media-minmax": "^2.0.1",
"@fingerprintjs/fingerprintjs": "^4.5.0",
"@playwright/test": "^1.47.2",
"@sveltejs/adapter-auto": "^3.2.5",
"@sveltejs/adapter-vercel": "^5.4.4",
"@sveltejs/kit": "^2.5.28",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/eslint": "^9.6.1",
"@types/gtag.js": "^0.0.20",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@zerodevx/svelte-img": "^2.1.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^2.44.0",
"fontaine": "^0.5.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"lottie-web": "^5.12.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.6",
"svelte": "^4.2.19",
"svelte-check": "^4.0.2",
"sveltekit-superforms": "^2.19.0",
"tailwindcss": "^3.4.13",
"taze": "^0.16.9",
"tslib": "^2.7.0",
"typesafe-i18n": "^5.26.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.7",
"vitest": "^2.1.1",
"zod": "^3.23.8"
},
"lint-staged": {
"**/*.{js,ts,jsx,json,svelte}": [
"eslint . --fix",
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@builder.io/partytown": "^0.10.2",
"bits-ui": "^0.21.15",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"formsnap": "^1.0.1",
"lucide-svelte": "^0.445.0",
"mode-watcher": "^0.4.1",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.2",
"tailwind-variants": "^0.2.1"
}
}