-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 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
{
"name": "fastify-htmx",
"version": "1.0.0",
"description": "A Fastify application with HTMX and TailwindCSS",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "sp",
"dev": "sp --dev",
"test": "sp --test",
"e2e": "spe",
"lint": "xss-scan && eslint . --ext .ts,.tsx",
"typecheck": "tsc -p tsconfig.app.json --noEmit & tsc -p tsconfig.client.json --noEmit",
"gen-session-key": "spk .env.local",
"format": "prettier --write ."
},
"keywords": [
"htmx",
"tailwindcss",
"typescript",
"drizzle-orm",
"postgres",
"html",
"kitajs",
"esbuild",
"htmx.org",
"pg",
"env-schema",
"fastify"
],
"author": "Jacopo Martinelli",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "5.8.0",
"@fastify/error": "3.4.1",
"@fastify/formbody": "7.4.0",
"@fastify/multipart": "8.2.0",
"@fastify/secure-session": "7.5.0",
"@fastify/sensible": "5.5.0",
"@fastify/static": "7.0.3",
"@fastify/type-provider-typebox": "4.0.0",
"@fastify/under-pressure": "^8.3.0",
"@kitajs/fastify-html-plugin": "4.1.0",
"@kitajs/html": "4.1.0",
"@sinclair/typebox": "0.32.20",
"close-with-grace": "1.3.0",
"drizzle-orm": "0.30.8",
"env-schema": "5.2.1",
"fastify": "4.26.2",
"fastify-better-flash": "0.0.2",
"fastify-plugin": "4.5.1",
"postgres": "3.4.4"
},
"devDependencies": {
"@kitajs/ts-html-plugin": "4.0.1",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"cypress": "13.7.3",
"drizzle-kit": "0.20.14",
"eslint": "8.56.0",
"eslint-plugin-drizzle": "0.2.3",
"htmx.org": "1.9.11",
"pg": "8.11.5",
"pino-pretty": "11.0.0",
"prettier": "3.2.5",
"slim-pack": "0.0.5",
"typescript": "5.4.5"
}
}