-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@pierogis/kitchen",
"version": "0.0.1",
"description": "a place to test your recipes",
"repository": {
"type": "git",
"url": "git+https://github.com/pierogis/kitchen.git"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/pierogis/kitchen/issues"
},
"homepage": "https://kitchen.pierogis.live",
"keywords": [
"svelte",
"image",
"animation",
"website"
],
"scripts": {
"dev": "vite dev",
"build": "vite build",
"postinstall": "prisma generate",
"package": "svelte-kit package",
"preview": "vite preview",
"db:generate:drizzle": "drizzle-kit generate:pg --force",
"db:migrate:drizzle": "tsx ./scripts/migrate.ts",
"db:seed:drizzle": "tsx ./scripts/seed/index.ts",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"lint:fix": "pnpm run format && eslint --fix --ignore-path .gitignore .",
"db:migrate": "prisma migrate dev",
"db:seed": "prisma db seed",
"db:reset": "prisma migrate reset",
"tauri": "tauri"
},
"devDependencies": {
"@pierogis/svelte-tweakpane": "^0.0.1",
"@playwright/test": "^1.36.1",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.22.3",
"@tauri-apps/cli": "^1.4.0",
"@tweakpane/core": "^1.1.9",
"@types/three": "^0.141.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prisma": "^4.16.2",
"svelte": "^3.59.2",
"svelte-check": "^3.4.6",
"three": "^0.141.0",
"tslib": "^2.6.0",
"typescript": "~5.1.6",
"vite": "^4.4.4"
},
"dependencies": {
"@pierogis/tweakpane-plugin-grouplist": "^0.1.0",
"@prisma/client": "^4.16.2",
"@tweakpane/plugin-essentials": "^0.1.8",
"ansi-regex": "^6.0.1",
"glob-parent": "^6.0.2",
"json-schema": "^0.4.0",
"nth-check": "^2.1.1",
"striptags": "^3.2.0",
"tweakpane": "^3.1.10",
"uuid": "^8.3.2"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^8.0.0"
},
"type": "module"
}