-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 817 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 817 Bytes
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
{
"name": "webapp",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">=16.18.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"format": "yarn rome format .",
"format:fix": "yarn rome format . --write",
"lint": "yarn rome check .",
"lint:fix": "yarn rome check . --apply-suggested"
},
"devDependencies": {
"@sveltejs/adapter-auto": "2.0.0",
"@sveltejs/kit": "1.15.7",
"autoprefixer": "10.4.14",
"daisyui": "2.51.5",
"postcss": "8.4.22",
"rome": "11.0.0",
"svelte": "3.58.0",
"svelte-meta-tags": "2.7.0",
"tailwindcss": "3.3.1",
"vite": "4.0.3"
},
"dependencies": {
"@metamask/detect-provider": "2.0.0",
"@urql/svelte": "3.0.3",
"luxon": "3.3.0",
"theme-change": "2.5.0"
}
}