-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.08 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
{
"name": "discuss",
"version": "0.3.2",
"description": "A self-hosted, lightweight SQLite comment system for static sites.",
"main": "src/server.js",
"type": "module",
"engines": {
"node": ">=18.11.0"
},
"scripts": {
"start": "NODE_ENV=production node src/server.js",
"dev": "NODE_ENV=development node --watch src/server.js",
"setup": "node src/setup.js",
"build:css": "tailwindcss -i ./src/design-system/admin.css -o ./public/admin/admin.css --minify",
"build:client:css": "node scripts/build-client-css.cjs",
"build:client:inject": "node scripts/build-client.js",
"build:client": "npm run build:client:css && npm run build:client:inject",
"build": "npm run build:css && npm run build:client",
"test": "node --test test/render.test.js test/auth.test.js test/comments.test.js test/admin.test.js test/encrypt.test.js test/mailer.test.js",
"test:coverage": "c8 --reporter=text --reporter=lcov node --test test/render.test.js test/auth.test.js test/comments.test.js test/admin.test.js test/encrypt.test.js test/mailer.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KarthikeyanKC/discuss.git"
},
"keywords": [
"comments",
"self-hosted",
"sqlite",
"jamstack",
"comment-engine"
],
"author": "Karthikeyan KC",
"license": "MIT",
"bugs": {
"url": "https://github.com/KarthikeyanKC/discuss/issues"
},
"homepage": "https://github.com/KarthikeyanKC/discuss#readme",
"dependencies": {
"argon2": "^0.44.0",
"better-sqlite3": "^12.9.0",
"cookie-parser": "^1.4.7",
"express": "^5.2.1",
"express-rate-limit": "^8.4.1",
"jsonwebtoken": "^9.0.3",
"markdown-it": "^14.1.1",
"nodemailer": "^8.0.10",
"sanitize-html": "^2.17.3"
},
"devDependencies": {
"@karthikeyankc/ken-design-system": "file:../../ken-design-system",
"@tailwindcss/cli": "^4.3.0",
"@tailwindcss/postcss": "^4.3.0",
"autoprefixer": "^10.5.0",
"c8": "^11.0.0",
"esbuild": "^0.28.0",
"postcss": "^8.5.10",
"postcss-prefix-selector": "^2.1.1",
"tailwindcss": "^4.3.0"
}
}