-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.57 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.57 KB
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
{
"name": "datalife-epi-svelte",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite dev",
"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 --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"gen-types": "openapi-typescript openapi.yaml -o src/lib/types/api.generated.ts",
"check-stock": "tsx scripts/check-stock-consistency.ts",
"check-stock:fix": "tsx scripts/check-stock-consistency.ts --fix",
"check-stock:avental": "tsx scripts/check-stock-consistency.ts --item=\"avental\"",
"quick-check-avental": "node scripts/quick-check-avental.js"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"autoprefixer": "^10.4.16",
"flowbite": "^2.3.0",
"flowbite-svelte": "^0.48.6",
"flowbite-svelte-icons": "^1.6.1",
"openapi-typescript": "^7.8.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.19",
"svelte-check": "^3.6.0",
"tailwindcss": "^3.3.6",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.3"
},
"dependencies": {
"date-fns": "^4.1.0",
"jose": "^6.0.11",
"svelte-i18n": "^4.0.1",
"uuid": "^11.1.0"
},
"type": "module"
}