forked from jscraftcamp/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.4 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
{
"name": "website",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"dev": "vite dev",
"build": "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",
"test": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write . '!participants/*.json'",
"update-schema": "node --loader ts-node/esm --experimental-specifier-resolution=node create-json-schema.ts > static/schemas/participants.2023.json && prettier --write ./static/schemas/participants.2023.json"
},
"packageManager": "[email protected]",
"devDependencies": {
"@fontsource/poppins": "5.0.1",
"@fontsource/source-sans-pro": "5.0.1",
"@sveltejs/adapter-static": "2.0.2",
"@sveltejs/kit": "1.19.0",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-svelte3": "4.0.0",
"jsonc-parser": "3.2.0",
"prettier": "2.8.8",
"prettier-plugin-svelte": "2.10.0",
"svelte": "3.59.1",
"svelte-check": "3.3.2",
"ts-node": "10.9.1",
"tslib": "2.5.2",
"typescript": "5.0.4",
"vite": "4.3.8",
"vitest": "0.31.1",
"zod": "3.21.4",
"zod-to-json-schema": "3.21.1"
},
"type": "module"
}