generated from palewire/cuny-jour-static-site-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 805 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"//": "package.json: This file defines your project and its dependencies.",
"//name": "The name of your project. Change this when you create a new site.",
"//scripts": "Commands you can run: 'npm run dev' starts a local server, 'npm run build' creates the final site.",
"//devDependencies": "The packages this project needs. They are installed when you run 'npm install'.",
"name": "cuny-jour-static-site-template",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"sass": "^1.97.3",
"svelte": "^5.0.0",
"vite": "^6.0.0"
},
"type": "module"
}