-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
66 lines (66 loc) · 2.25 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
{
"name": "@natoboram/lmgtfy",
"version": "0.0.2",
"description": "A \"Let Me Google That For You\" clone that's open source and doesn't track you when you share it.",
"keywords": [
"Google",
"LMGTFY"
],
"homepage": "https://github.com/NatoBoram/lmgtfy",
"bugs": {
"url": "https://github.com/NatoBoram/lmgtfy/issues"
},
"license": "AGPL-3.0-or-later",
"repository": "github:NatoBoram/lmgtfy",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"clean": "rm -rf .svelte-kit build dist docs node_modules tsconfig.tsbuildinfo",
"preview": "vite preview",
"test": "pnpm run test:integration && pnpm run test:unit",
"test:integration": "playwright test",
"test:unit": "vitest --sequence.concurrent",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint --fix . && pnpm run format --list-different",
"format": "prettier --write .",
"docker:build": "docker build --secret id=BUILD_BASE --tag lmgtfy .",
"docker:run": "docker run --publish 127.0.0.1:3000:3000 lmgtfy",
"docker:kill": "docker ps --format '{{.Image}} {{.ID}}' | grep lmgtfy | awk '{print $2}' | xargs docker kill",
"sync": "svelte-kit sync"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@natoboram/heroicons.svelte": "^1.0.6",
"@playwright/test": "^1.47.2",
"@sveltejs/adapter-auto": "^3.2.5",
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.8.3",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/svelte": "^4.2.3",
"@testing-library/user-event": "^14.6.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.11.0",
"happy-dom": "^17.1.8",
"postcss": "^8.4.49",
"prettier": "^3.5.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"svelte-eslint-parser": "^0.43.0",
"tailwindcss": "^3.4.17",
"tslib": "^2.7.0",
"typescript": "5.8.2",
"typescript-eslint": "^8.25.0",
"vite": "^5.4.12",
"vitest": "^2.1.9"
},
"private": true,
"type": "module"
}