-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.51 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
45
46
47
48
49
{
"name": "kolomoni-frontend",
"version": "0.0.1",
"private": true,
"license": "GPL-3.0-only",
"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",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"api:clean": "tsx ./scripts/clean-api-schema-types-and-validators.ts",
"api:generate": "yarn api-schema:generate && yarn api-validators:generate",
"api-schema:generate": "tsx ./scripts/generate-api-schema-types.ts",
"api-validators:generate": "tsx ./scripts/generate-api-schema-validators.ts"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/eslint": "8.56.0",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"ajv": "^8.12.0",
"eslint": "^8.56.0",
"eslint-plugin-svelte": "^2.35.1",
"openapi-typescript": "^6.7.4",
"sass": "^1.72.0",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"svelte-preprocess": "^5.1.3",
"sveltekit-adapter-deno": "^0.12.1",
"tslib": "^2.4.1",
"tsx": "^4.7.0",
"typescript": "^5.0.0",
"typescript-json-schema": "^0.62.0",
"vite": "^5.0.3"
},
"type": "module",
"packageManager": "yarn@4.1.0",
"dependencies": {
"bits-ui": "^0.21.4"
}
}