-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"name": "michaelgpt",
"version": "0.0.1",
"private": true,
"scripts": {
"1-watch-remote": "npm-watch build",
"2-dev-remote": "npx wrangler@latest dev --remote",
"3-deploy": "vite build && npx wrangler@latest deploy",
"4-debug": "npx wrangler@latest tail",
"-----": "",
"dev": "vite dev --host",
"build": "vite build --force",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"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 . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js,ts,svelte,css,scss"
}
},
"devDependencies": {
"@cloudflare/ai": "^1.2.2",
"@cloudflare/workers-types": "^4.20240821.1",
"@fontsource/roboto": "^5.0.8",
"@fontsource/roboto-slab": "^5.0.12",
"@playwright/test": "^1.38.1",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/adapter-cloudflare-workers": "^1.1.4",
"@sveltejs/kit": "^1.25.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.33.2",
"npm-watch": "^0.11.0",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"sass": "^1.68.0",
"svelte": "^4.2.1",
"svelte-check": "^3.5.2",
"svelte-typewriter": "^3.1.6",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.6",
"zod": "^3.22.2"
},
"type": "module"
}