This repository has been archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "nostra",
"version": "0.0.1",
"type": "module",
"private": true,
"license": "MIT",
"author": "Gustavo Morinaga <me@gustavomorinaga.dev>",
"description": "An ecommerce made with SvelteKit and TailwindCSS",
"scripts": {
"dev": "vite dev",
"build": "vite 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 --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"devDependencies": {
"@fontsource-variable/inter": "5.0.8",
"@fontsource-variable/jetbrains-mono": "5.0.9",
"@fontsource-variable/roboto-slab": "5.0.8",
"@fontsource-variable/sora": "5.0.8",
"@playwright/test": "1.37.1",
"@svelte-put/clickoutside": "3.0.0",
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/kit": "1.24.0",
"@types/html-minifier": "4.0.2",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"autoprefixer": "10.4.15",
"cssnano": "6.0.1",
"daisyui": "3.6.4",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-svelte": "2.33.0",
"html-minifier": "4.0.0",
"iconify-icon": "1.0.8",
"postcss": "8.4.29",
"postcss-load-config": "4.0.1",
"postcss-nested": "6.0.1",
"prettier": "3.0.3",
"prettier-plugin-svelte": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.4",
"sass": "1.66.1",
"svelte": "4.2.0",
"svelte-action-balancer": "1.0.4",
"svelte-check": "3.5.1",
"svelte-portal": "2.2.0",
"svelte-preprocess": "5.0.4",
"sveltekit-superforms": "1.7.0",
"swiper": "10.2.0",
"tailwindcss": "3.3.3",
"tslib": "2.6.2",
"typescript": "5.2.2",
"vite": "4.4.9",
"vitest": "0.34.3",
"zod": "3.22.2"
},
"engines": {
"node": ">=14.17.0 <=18.x.x",
"pnpm": ">=6.14.0"
}
}