-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 875 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 875 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
{
"name": "next-app",
"version": "0.0.1",
"type": "module",
"packageManager": "pnpm@9.11.0",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"dev": "vite dev",
"dev-w-host": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"clean": "rimraf .svelte-kit build node_modules && echo '🔔 reminder: you will need to reinstall deps, `pnpm i`'"
},
"devDependencies": {
"@sveltejs/adapter-node": "^1",
"@sveltejs/kit": "^1",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10",
"daisyui": "^2",
"rimraf": "^4",
"svelte": "^4",
"svelte-check": "^3",
"tailwindcss": "^3",
"tslib": "^2",
"typescript": "^4",
"vite": "^4"
}
}