-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "plainweb",
"version": "0.0.16",
"description": "A framework combining HTMX, SQLite and TypeScript for less complexity and more joy",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "NODE_ENV=test vitest run",
"build": "tsc --noEmit && pnpm build:tw && tsup",
"build:tw": "tailwindcss -i ./styles.css -o ./output.css --minify",
"dev:tw": "tailwindcss -i ./styles.css -o ./output.css --watch",
"dev:admin": "tsx --watch bin/admin.ts",
"dev": "npm-run-all --parallel dev:admin dev:tw"
},
"keywords": [
"plainweb",
"sqlite",
"typescript",
"htmx",
"express",
"typescript"
],
"author": "Josef Erben <josef@plainweb.dev>",
"license": "MIT",
"peerDependencies": {
"@kitajs/html": "^4.2.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.32.0",
"tsx": "^4.10.3",
"zod": "^3.23.8"
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"better-sqlite3": "^11.0.0",
"errorhandler": "^1.5.1",
"express": "^4.19.2",
"express-list-endpoints": "^7.1.0",
"express-rate-limit": "^7.3.1",
"morgan": "^1.10.0",
"node-mocks-http": "^1.14.1",
"nodemailer": "^6.9.13",
"winston": "^3.13.1"
},
"devDependencies": {
"@kitajs/html": "^4.2.1",
"@kitajs/ts-html-plugin": "^4.0.1",
"@types/better-sqlite3": "^7.6.10",
"@types/errorhandler": "^1.5.3",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.24",
"@types/nodemailer": "^6.4.15",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^2.0.3",
"daisyui": "^4.11.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"npm-run-all2": "^6.0.0",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.3",
"tempy": "^3.1.0",
"tsup": "^8.0.2",
"tsx": "^4.16.2",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.1",
"zod": "^3.23.8"
}
}