-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.11 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
{
"name": "nymph.io-site",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"clean": "test -d ./docs && rm -r ./docs || true",
"build": "npm run clean && npm run build:sass && npm run build:site",
"build:sass": "sass src/sass/main.scss static/css/main.css",
"build:site": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-unknown --check --plugin-search-dir=. .",
"format": "prettier --ignore-unknown --write --plugin-search-dir=. ."
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"prettier": "~3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"sass": "^1.83.4",
"svelte": "^5.19.0",
"svelte-check": "^4.1.4",
"svelte-highlight": "^7.8.2",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.0.9"
},
"type": "module"
}